Skip to content
This repository has been archived by the owner on Nov 21, 2020. It is now read-only.

Commit

Permalink
%d leftovers
Browse files Browse the repository at this point in the history
  • Loading branch information
dd86k committed Jun 5, 2019
1 parent 0f0e87f commit f9e450a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ void _printfd(uint64_t l) {
} else if (f >= KB) {
printf("%.1f KB", f / KB);
} else
printf("%lld B", l);
printf("%llu B", l);
}

uint16_t bswap16(uint16_t s) {
Expand Down
6 changes: 3 additions & 3 deletions src/vdisk/vmdk.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ void scan_vmdk() {

if (More) {
printf(
"Capacity: %lld Sectors\n"
"Overhead: %lld Sectors\n"
"Grain size (Raw): %lld Sectors\n",
"Capacity: %llu Sectors\n"
"Overhead: %llu Sectors\n"
"Grain size (Raw): %llu Sectors\n",
h.capacity, h.overHead, h.grainSize
);
}
Expand Down

0 comments on commit f9e450a

Please # to comment.