Changes in uspace/srv/hid/console/console.c [a46e56b:a35b458] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/console/console.c
ra46e56b ra35b458 507 507 } 508 508 509 static void client_connection( cap_call_handle_t icall_handle, ipc_call_t *icall, void *arg)509 static void client_connection(ipc_callid_t iid, ipc_call_t *icall, void *arg) 510 510 { 511 511 console_t *cons = NULL; … … 519 519 520 520 if (cons == NULL) { 521 async_answer_0(i call_handle, ENOENT);521 async_answer_0(iid, ENOENT); 522 522 return; 523 523 } … … 526 526 cons_set_cursor_vis(cons, true); 527 527 528 con_conn(i call_handle, icall, &cons->srvs);528 con_conn(iid, icall, &cons->srvs); 529 529 } 530 530
Note:
See TracChangeset
for help on using the changeset viewer.