Changes in uspace/lib/c/generic/iplink_srv.c [fafb8e5:beb83c1] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/iplink_srv.c
rfafb8e5 rbeb83c1 162 162 iplink_sdu_t sdu; 163 163 164 sdu.src = ipc_get_arg1(icall);165 sdu.dest = ipc_get_arg2(icall);164 sdu.src = IPC_GET_ARG1(*icall); 165 sdu.dest = IPC_GET_ARG2(*icall); 166 166 167 167 errno_t rc = async_data_write_accept(&sdu.data, false, 0, 0, 0, … … 253 253 ipc_call_t call; 254 254 async_get_call(&call); 255 sysarg_t method = ipc_get_imethod(&call);255 sysarg_t method = IPC_GET_IMETHOD(call); 256 256 257 257 if (!method) {
Note:
See TracChangeset
for help on using the changeset viewer.