Changeset 20614d0 in mainline for uspace/srv/vfs/vfs.c
- Timestamp:
- 2007-11-03T14:59:41Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 828d215
- Parents:
- 4d21cf8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs.c
r4d21cf8 r20614d0 60 60 */ 61 61 if (!vfs_conn_open_files_init()) { 62 ipc_answer_fast (iid, ENOMEM, 0, 0);62 ipc_answer_fast_0(iid, ENOMEM); 63 63 return; 64 64 } … … 68 68 * This call needs to be answered. 69 69 */ 70 ipc_answer_fast (iid, EOK, 0, 0);70 ipc_answer_fast_0(iid, EOK); 71 71 72 72 /* … … 105 105 case VFS_SEEK: 106 106 default: 107 ipc_answer_fast (callid, ENOTSUP, 0, 0);107 ipc_answer_fast_0(callid, ENOTSUP); 108 108 break; 109 109 }
Note:
See TracChangeset
for help on using the changeset viewer.