Changes in uspace/srv/hid/input/proto/mousedev.c [a46e56b:a35b458] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/input/proto/mousedev.c
ra46e56b ra35b458 70 70 } 71 71 72 static void mousedev_callback_conn( cap_call_handle_t icall_handle, ipc_call_t *icall,72 static void mousedev_callback_conn(ipc_callid_t iid, ipc_call_t *icall, 73 73 void *arg) 74 74 { … … 78 78 while (true) { 79 79 ipc_call_t call; 80 cap_call_handle_t chandle= async_get_call(&call);80 ipc_callid_t callid = async_get_call(&call); 81 81 82 82 if (!IPC_GET_IMETHOD(call)) { … … 110 110 } 111 111 112 async_answer_0(c handle, retval);112 async_answer_0(callid, retval); 113 113 } 114 114 }
Note:
See TracChangeset
for help on using the changeset viewer.