Changeset 3a6d44b7 in mainline for uspace/lib/wndmgt/src/wndmgt_srv.c
- Timestamp:
- 2022-11-07T17:42:51Z (3 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 60ebe63
- Parents:
- f1f433d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/wndmgt/src/wndmgt_srv.c
rf1f433d r3a6d44b7 204 204 static void wndmgt_activate_window_srv(wndmgt_srv_t *srv, ipc_call_t *icall) 205 205 { 206 sysarg_t seat_id; 206 207 sysarg_t wnd_id; 207 208 errno_t rc; 208 209 209 wnd_id = ipc_get_arg1(icall); 210 seat_id = ipc_get_arg1(icall); 211 wnd_id = ipc_get_arg2(icall); 210 212 211 213 if (srv->ops->activate_window == NULL) { … … 214 216 } 215 217 216 rc = srv->ops->activate_window(srv->arg, wnd_id);218 rc = srv->ops->activate_window(srv->arg, seat_id, wnd_id); 217 219 async_answer_0(icall, rc); 218 220 }
Note:
See TracChangeset
for help on using the changeset viewer.