Changes in uspace/srv/logger/ctl.c [beb83c1:fafb8e5] in mainline
- File:
-
- 1 edited
-
uspace/srv/logger/ctl.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/logger/ctl.c
rbeb83c1 rfafb8e5 75 75 async_get_call(&call); 76 76 77 if (! IPC_GET_IMETHOD(call)) {77 if (!ipc_get_imethod(&call)) { 78 78 async_answer_0(&call, EOK); 79 79 break; 80 80 } 81 81 82 switch ( IPC_GET_IMETHOD(call)) {82 switch (ipc_get_imethod(&call)) { 83 83 case LOGGER_CONTROL_SET_DEFAULT_LEVEL: 84 rc = set_default_logging_level( IPC_GET_ARG1(call));84 rc = set_default_logging_level(ipc_get_arg1(&call)); 85 85 async_answer_0(&call, rc); 86 86 break; 87 87 case LOGGER_CONTROL_SET_LOG_LEVEL: 88 rc = handle_log_level_change( IPC_GET_ARG1(call));88 rc = handle_log_level_change(ipc_get_arg1(&call)); 89 89 async_answer_0(&call, rc); 90 90 break;
Note:
See TracChangeset
for help on using the changeset viewer.
