Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/test/chardev-test/main.c

    r5a6cc679 ra46e56b  
    8484};
    8585
    86 static void chardev_test_connection(ipc_callid_t iid, ipc_call_t *icall, void *arg)
     86static void chardev_test_connection(cap_call_handle_t icall_handle, ipc_call_t *icall, void *arg)
    8787{
    8888        chardev_srvs_t *svc;
     
    9797                svc = &partialx_srvs;
    9898        } else {
    99                 async_answer_0(iid, ENOENT);
     99                async_answer_0(icall_handle, ENOENT);
    100100                return;
    101101        }
    102102
    103         chardev_conn(iid, icall, svc);
     103        chardev_conn(icall_handle, icall, svc);
    104104}
    105105
Note: See TracChangeset for help on using the changeset viewer.