Ignore:
File:
1 edited

Legend:

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

    r889cdb1 rfafb8e5  
    248248        iplink_recv_sdu_t sdu;
    249249
    250         ip_ver_t ver = IPC_GET_ARG1(*icall);
     250        ip_ver_t ver = ipc_get_arg1(icall);
    251251
    252252        errno_t rc = async_data_write_accept(&sdu.data, false, 0, 0, 0,
     
    287287                async_get_call(&call);
    288288
    289                 if (!IPC_GET_IMETHOD(call)) {
     289                if (!ipc_get_imethod(&call)) {
    290290                        async_answer_0(&call, EOK);
    291291                        return;
    292292                }
    293293
    294                 switch (IPC_GET_IMETHOD(call)) {
     294                switch (ipc_get_imethod(&call)) {
    295295                case IPLINK_EV_RECV:
    296296                        iplink_ev_recv(iplink, &call);
Note: See TracChangeset for help on using the changeset viewer.