Commit dc89741f authored by Jonathan Beck's avatar Jonathan Beck

do no return custom code in ifuse_getattr

parent 036cfaf4
...@@ -46,7 +46,7 @@ static int ifuse_getattr(const char *path, struct stat *stbuf) { ...@@ -46,7 +46,7 @@ static int ifuse_getattr(const char *path, struct stat *stbuf) {
int res = 0; int res = 0;
iphone_afc_client_t afc = fuse_get_context()->private_data; 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; return res;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment