Changes in uspace/app/mkfat/mkfat.c [ed903174:1ccafee] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/mkfat/mkfat.c
red903174 r1ccafee 98 98 size_t block_size; 99 99 char *endptr; 100 aoff64_t dev_nblocks;100 bn_t dev_nblocks; 101 101 102 102 cfg.total_sectors = 0; … … 160 160 printf(NAME ": Warning, failed to obtain block device size.\n"); 161 161 } else { 162 printf(NAME ": Block device has %" PRIu OFF64" blocks.\n",162 printf(NAME ": Block device has %" PRIuBN " blocks.\n", 163 163 dev_nblocks); 164 164 cfg.total_sectors = dev_nblocks; … … 236 236 static int fat_blocks_write(struct fat_params const *par, dev_handle_t handle) 237 237 { 238 aoff64_t addr;238 bn_t addr; 239 239 uint8_t *buffer; 240 240 int i;
Note:
See TracChangeset
for help on using the changeset viewer.