Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/iplink_srv.c

    rbeb83c1 rfafb8e5  
    162162        iplink_sdu_t sdu;
    163163
    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);
    166166
    167167        errno_t rc = async_data_write_accept(&sdu.data, false, 0, 0, 0,
     
    253253                ipc_call_t call;
    254254                async_get_call(&call);
    255                 sysarg_t method = IPC_GET_IMETHOD(call);
     255                sysarg_t method = ipc_get_imethod(&call);
    256256
    257257                if (!method) {
Note: See TracChangeset for help on using the changeset viewer.