Changeset fb6f1a5 in mainline for uspace/app/mkfat/mkfat.c
- Timestamp:
- 2010-01-27T21:44:52Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1ccafee
- Parents:
- b79d450
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/mkfat/mkfat.c
rb79d450 rfb6f1a5 44 44 #include <devmap.h> 45 45 #include <byteorder.h> 46 #include <sys/types.h> 47 #include <inttypes.h> 46 48 #include <errno.h> 47 49 #include "fat.h" … … 157 159 printf(NAME ": Warning, failed to obtain block device size.\n"); 158 160 } else { 159 printf(NAME ": Block device has %llu blocks.\n", dev_nblocks); 161 printf(NAME ": Block device has %" PRIu64 " blocks.\n", 162 (uint64_t) dev_nblocks); 160 163 cfg.total_sectors = dev_nblocks; 161 164 }
Note:
See TracChangeset
for help on using the changeset viewer.