Changeset bf22cb78 in mainline for uspace/lib
- Timestamp:
- 2019-11-19T09:21:13Z (6 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/lib
- Files:
-
- 2 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);
Note:
See TracChangeset
for help on using the changeset viewer.