Changes in uspace/app/mkfat/mkfat.c [1ccafee:9245413] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/mkfat/mkfat.c
r1ccafee r9245413 44 44 #include <devmap.h> 45 45 #include <byteorder.h> 46 #include <sys/types.h>47 #include <sys/typefmt.h>48 #include <inttypes.h>49 46 #include <errno.h> 50 47 #include "fat.h" … … 160 157 printf(NAME ": Warning, failed to obtain block device size.\n"); 161 158 } else { 162 printf(NAME ": Block device has %" PRIuBN " blocks.\n", 163 dev_nblocks); 159 printf(NAME ": Block device has %llu blocks.\n", dev_nblocks); 164 160 cfg.total_sectors = dev_nblocks; 165 161 }
Note:
See TracChangeset
for help on using the changeset viewer.