Changeset 3115355 in mainline for uspace/srv/vfs/vfs_mount.c
- Timestamp:
- 2007-12-31T10:14:38Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 27d293a
- Parents:
- badbd888
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs_mount.c
rbadbd888 r3115355 87 87 * system. 88 88 */ 89 if (!ipc_data_write_receive(&callid, NULL,&size)) {89 if (!ipc_data_write_receive(&callid, &size)) { 90 90 ipc_answer_0(callid, EINVAL); 91 91 ipc_answer_0(rid, EINVAL); … … 123 123 * Now, we want the client to send us the mount point. 124 124 */ 125 if (!ipc_data_write_receive(&callid, NULL,&size)) {125 if (!ipc_data_write_receive(&callid, &size)) { 126 126 ipc_answer_0(callid, EINVAL); 127 127 ipc_answer_0(rid, EINVAL);
Note:
See TracChangeset
for help on using the changeset viewer.