Changeset bf22cb78 in mainline
- Timestamp:
- 2019-11-19T09:21:13Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8b1ce56
- Parents:
- 959ef5d
- git-author:
- Jiri Svoboda <jiri@…> (2019-11-18 19:21:08)
- git-committer:
- Jiri Svoboda <jiri@…> (2019-11-19 09:21:13)
- Location:
- uspace
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/display/src/disp_srv.c
r959ef5d rbf22cb78 154 154 } 155 155 156 printf("display_conn method=% lu\n",method);156 printf("display_conn method=%u\n", (unsigned) method); 157 157 switch (method) { 158 158 case DISPLAY_CALLBACK_CREATE: -
uspace/lib/ipcgfx/src/server.c
r959ef5d rbf22cb78 163 163 srvbmp->bmp = bitmap; 164 164 srvbmp->bmp_id = srvgc->next_bmp_id++; 165 printf("gc_bitmap_create_srv: storing bmp_id=%lu\n", srvbmp->bmp_id); 165 printf("gc_bitmap_create_srv: storing bmp_id=%u\n", 166 (unsigned) srvbmp->bmp_id); 166 167 167 168 async_answer_1(icall, EOK, srvbmp->bmp_id); -
uspace/srv/hid/display/client.c
r959ef5d rbf22cb78 127 127 128 128 // TODO Make this faster 129 printf("ds_client_find_window: id=0x% lx\n",id);129 printf("ds_client_find_window: id=0x%x\n", (unsigned) id); 130 130 wnd = ds_client_first_window(client); 131 131 while (wnd != NULL) { 132 printf("ds_client_find_window: wnd=%p wnd->id=0x%lx\n", wnd, wnd->id); 132 printf("ds_client_find_window: wnd=%p wnd->id=0x%x\n", wnd, 133 (unsigned) wnd->id); 133 134 if (wnd->id == id) 134 135 return wnd; -
uspace/srv/hid/display/display.c
r959ef5d rbf22cb78 208 208 ds_window_t *wnd; 209 209 210 printf("ds_display_find_window: id=0x% lx\n",id);210 printf("ds_display_find_window: id=0x%x\n", (unsigned) id); 211 211 212 212 client = ds_display_first_client(display); … … 215 215 wnd = ds_client_find_window(client, id); 216 216 if (wnd != NULL) { 217 printf("ds_display_find_window: found wnd=%p id=0x% lx\n",218 wnd, wnd->id);217 printf("ds_display_find_window: found wnd=%p id=0x%x\n", 218 wnd, (unsigned) wnd->id); 219 219 return wnd; 220 220 }
Note:
See TracChangeset
for help on using the changeset viewer.