Changeset 80f7c54 in mainline for uspace/app/tmon/list.c


Ignore:
Timestamp:
2018-01-27T14:37:17Z (6 years ago)
Author:
Ondřej Hlavatý <aearsis@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
bf0398c
Parents:
77733a9
git-author:
Ondřej Hlavatý <aearsis@…> (2018-01-27 14:37:07)
git-committer:
Ondřej Hlavatý <aearsis@…> (2018-01-27 14:37:17)
Message:

usb: make the code compile on 32-bit architecture

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/tmon/list.c

    r77733a9 r80f7c54  
    5353
    5454        if ((rc = devman_fun_sid_to_handle(svc, &diag_handle))) {
    55                 printf(NAME ": Error resolving handle of device with SID %ld, skipping.\n", svc);
     55                printf(NAME ": Error resolving handle of device with SID %" PRIun ", skipping.\n", svc);
    5656                return;
    5757        }
     
    5959        char path[MAX_PATH_LENGTH];
    6060        if ((rc = devman_fun_get_path(diag_handle, path, sizeof(path)))) {
    61                 printf(NAME ": Error resolving path of device with SID %ld, skipping.\n", svc);
     61                printf(NAME ": Error resolving path of device with SID %" PRIun ", skipping.\n", svc);
    6262                return;
    6363        }
Note: See TracChangeset for help on using the changeset viewer.