Changes in uspace/srv/vfs/vfs_lookup.c [96b02eb9:ffa2c8ef] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs_lookup.c
r96b02eb9 rffa2c8ef 37 37 38 38 #include "vfs.h" 39 #include <ipc/ipc.h>40 39 #include <macros.h> 41 40 #include <async.h> … … 179 178 fibril_mutex_unlock(&plb_mutex); 180 179 181 if (( (int) rc < EOK) || (!result))180 if ((int) rc < EOK) 182 181 return (int) rc; 182 183 if (!result) 184 return EOK; 183 185 184 186 result->triplet.fs_handle = (fs_handle_t) rc;
Note:
See TracChangeset
for help on using the changeset viewer.