diff options
author | Jonathan Beck | 2008-08-25 23:55:59 +0200 |
---|---|---|
committer | Jonathan Beck | 2008-08-31 19:33:19 +0200 |
commit | dc89741f00bd6919c0eedbd882c05f66d72fdbee (patch) | |
tree | 05af82b7e3ae16ba3a204b6091a8a20f8f6c9ed2 | |
parent | 036cfaf4f28143f61167eed62e9d6645a814fc96 (diff) | |
download | libplist-dc89741f00bd6919c0eedbd882c05f66d72fdbee.tar.gz libplist-dc89741f00bd6919c0eedbd882c05f66d72fdbee.tar.bz2 |
do no return custom code in ifuse_getattr
-rw-r--r-- | src/ifuse.c | 2 |
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; } |