Changeset 1938b381 in mainline for uspace/srv/fs/exfat/exfat_ops.c


Ignore:
Timestamp:
2018-09-29T15:28:01Z (6 years ago)
Author:
Jiří Zárevúcky <jiri.zarevucky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3f7fe9e
Parents:
99170e0c
Message:

Use correct print format specifiers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/exfat/exfat_ops.c

    r99170e0c r1938b381  
    12391239        printf("Version: %d.%d\n", bs->version.major, bs->version.minor);
    12401240        printf("Volume serial: %d\n", uint32_t_le2host(bs->volume_serial));
    1241         printf("Volume first sector: %lld\n", VOL_FS(bs));
    1242         printf("Volume sectors: %lld\n", VOL_CNT(bs));
     1241        printf("Volume first sector: %" PRId64 "\n", VOL_FS(bs));
     1242        printf("Volume sectors: %" PRId64 "\n", VOL_CNT(bs));
    12431243        printf("FAT first sector: %d\n", FAT_FS(bs));
    12441244        printf("FAT sectors: %d\n", FAT_CNT(bs));
Note: See TracChangeset for help on using the changeset viewer.