Changeset 195b7b3 in mainline for uspace/srv/hid/display/client.c
- Timestamp:
- 2020-06-22T15:25:48Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c8e1f93
- Parents:
- 5271e4c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/display/client.c
r5271e4c r195b7b3 128 128 * @param id Window ID 129 129 */ 130 #include <stdio.h>131 130 ds_window_t *ds_client_find_window(ds_client_t *client, ds_wnd_id_t id) 132 131 { … … 134 133 135 134 // TODO Make this faster 136 printf("ds_client_find_window: id=0x%x\n", (unsigned) id);137 135 wnd = ds_client_first_window(client); 138 136 while (wnd != NULL) { 139 printf("ds_client_find_window: wnd=%p wnd->id=0x%x\n", wnd,140 (unsigned) wnd->id);141 137 if (wnd->id == id) 142 138 return wnd;
Note:
See TracChangeset
for help on using the changeset viewer.