Changeset bf22cb78 in mainline for uspace/lib


Ignore:
Timestamp:
2019-11-19T09:21:13Z (6 years ago)
Author:
Jiri Svoboda <jiri@…>
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)
Message:

Fix 32-bit build

Location:
uspace/lib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/display/src/disp_srv.c

    r959ef5d rbf22cb78  
    154154                }
    155155
    156                 printf("display_conn method=%lu\n", method);
     156                printf("display_conn method=%u\n", (unsigned) method);
    157157                switch (method) {
    158158                case DISPLAY_CALLBACK_CREATE:
  • uspace/lib/ipcgfx/src/server.c

    r959ef5d rbf22cb78  
    163163        srvbmp->bmp = bitmap;
    164164        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);
    166167
    167168        async_answer_1(icall, EOK, srvbmp->bmp_id);
Note: See TracChangeset for help on using the changeset viewer.