do no return custom code in ifuse_getattr

This commit is contained in:
Jonathan Beck
2008-08-25 23:55:59 +02:00
parent 036cfaf4f2
commit dc89741f00
+1 -1
View File
@@ -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;
}