summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ifuse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ifuse.c b/src/ifuse.c
index eacf549..f768423 100644
--- a/src/ifuse.c
+++ b/src/ifuse.c
@@ -46,7 +46,7 @@ static int ifuse_getattr(const char *path, struct stat *stbuf) {
int res = 0;
iphone_afc_client_t afc = fuse_get_context()->private_data;
- res = iphone_afc_get_file_attr(afc, path, stbuf);
+ iphone_afc_get_file_attr(afc, path, stbuf);
return res;
}