Changeset 132ab5d1 in mainline for uspace/lib/c/generic/vfs/inbox.c
- Timestamp:
- 2018-01-30T03:20:45Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5a6cc679
- Parents:
- 8bfb163 (diff), 6a5d05b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/vfs/inbox.c
r8bfb163 r132ab5d1 120 120 * 121 121 * @param name Name of the entry. 122 * @return Requested file or ENOENTif not set.122 * @return Requested file or -1 if not set. 123 123 */ 124 124 int inbox_get(const char *name) … … 130 130 return e->file; 131 131 case 1: 132 return ENOENT;132 return -1; 133 133 } 134 134 } 135 135 136 return ENOENT;136 return -1; 137 137 } 138 138
Note:
See TracChangeset
for help on using the changeset viewer.