Changeset 3529f148 in mainline for uspace/srv/sysman/connection_ctl.c
- Timestamp:
- 2020-03-06T19:14:20Z (5 years ago)
- Children:
- 13b4504
- Parents:
- 06599a1
- git-author:
- Matthieu Riolo <matthieu.riolo@…> (2020-02-29 11:22:13)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2020-03-06 19:14:20)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/sysman/connection_ctl.c
r06599a1 r3529f148 104 104 } 105 105 106 i nt flags = ipc_get_arg1(icall);106 ipc_start_flag_t flags = ipc_get_arg1(icall); 107 107 sysman_log(LVL_DEBUG2, "%s(%s, %x)", __func__, unit_name, flags); 108 108 … … 144 144 145 145 unit_handle_t handle = ipc_get_arg1(icall); 146 sysarg_t flags = ipc_get_arg2(icall);147 sysman_log(LVL_DEBUG2, "%s(%p, % " SCNuPTR ", %i)", __func__, icall->cap_handle, flags, state);146 ipc_start_flag_t flags = ipc_get_arg2(icall); 147 sysman_log(LVL_DEBUG2, "%s(%p, %u, %i)", __func__, icall->cap_handle, flags, state); 148 148 149 149 unit_t *unit = repo_find_unit_by_handle(handle);
Note:
See TracChangeset
for help on using the changeset viewer.