Ignore:
File:
1 edited

Legend:

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

    rfafb8e5 rc477c80  
    6262                async_get_call(&call);
    6363
    64                 if (!ipc_get_imethod(&call)) {
     64                if (!IPC_GET_IMETHOD(call)) {
    6565                        async_answer_0(&call, EOK);
    6666                        return;
    6767                }
    6868
    69                 switch (ipc_get_imethod(&call)) {
     69                switch (IPC_GET_IMETHOD(call)) {
    7070                case LOC_EVENT_CAT_CHANGE:
    7171                        fibril_mutex_lock(&loc_callback_mutex);
     
    303303
    304304        if (sid != NULL)
    305                 *sid = (service_id_t) ipc_get_arg1(&answer);
     305                *sid = (service_id_t) IPC_GET_ARG1(answer);
    306306
    307307        return retval;
     
    359359
    360360        if (handle != NULL)
    361                 *handle = (service_id_t) ipc_get_arg1(&answer);
     361                *handle = (service_id_t) IPC_GET_ARG1(answer);
    362362
    363363        return retval;
     
    404404                return retval;
    405405
    406         act_size = ipc_get_arg2(&dreply);
     406        act_size = IPC_GET_ARG2(dreply);
    407407        assert(act_size <= LOC_NAME_MAXLEN);
    408408        name_buf[act_size] = '\0';
     
    492492
    493493        if (handle != NULL)
    494                 *handle = (service_id_t) ipc_get_arg1(&answer);
     494                *handle = (service_id_t) IPC_GET_ARG1(answer);
    495495
    496496        return retval;
     
    541541
    542542        if (cat_id != NULL)
    543                 *cat_id = (category_id_t) ipc_get_arg1(&answer);
     543                *cat_id = (category_id_t) IPC_GET_ARG1(answer);
    544544
    545545        return retval;
     
    778778        }
    779779
    780         *act_size = ipc_get_arg1(&answer);
     780        *act_size = IPC_GET_ARG1(answer);
    781781        return EOK;
    782782}
Note: See TracChangeset for help on using the changeset viewer.