Changeset fb6f1a5 in mainline for uspace/srv/bd/part/mbr_part/mbr_part.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/srv/bd/part/mbr_part/mbr_part.c
rb79d450 rfb6f1a5 64 64 #include <devmap.h> 65 65 #include <sys/types.h> 66 #include <inttypes.h> 66 67 #include <libblock.h> 67 68 #include <devmap.h> … … 247 248 size_mb = (part->length * block_size + 1024 * 1024 - 1) 248 249 / (1024 * 1024); 249 printf(NAME ": Registered device %s: %llu blocks %llu MB.\n", 250 name, part->length, size_mb); 250 printf(NAME ": Registered device %s: %" PRIu64 " blocks " 251 "%" PRIu64 " MB.\n", 252 name, (uint64_t) part->length, size_mb); 251 253 252 254 part->dev = dev; … … 274 276 if (brb == NULL) { 275 277 printf(NAME ": Failed allocating memory.\n"); 276 return ENOMEM; 278 return ENOMEM; 277 279 } 278 280 … … 289 291 sgn = uint16_t_le2host(brb->signature); 290 292 if (sgn != BR_SIGNATURE) { 291 printf(NAME ": Invalid boot record signature 0x%04X.\n", sgn); 293 printf(NAME ": Invalid boot record signature 0x%04" PRIX16 294 ".\n", sgn); 292 295 return EINVAL; 293 296 } … … 339 342 sgn = uint16_t_le2host(brb->signature); 340 343 if (sgn != BR_SIGNATURE) { 341 printf(NAME ": Invalid boot record signature 0x%04 X"342 " in EBR at %u.\n", sgn, ba);344 printf(NAME ": Invalid boot record signature 0x%04" 345 PRIX16 " in EBR at %" PRIu32 ".\n", sgn, ba); 343 346 return EINVAL; 344 347 }
Note:
See TracChangeset
for help on using the changeset viewer.