add-ons/disk_systems Fix printf format - PVS 2049
* printf type set to unsigned Change-Id: Ib4a8e1bb56c9e00ce90adef680db651fb17686c0 Reviewed-on: https://review.haiku-os.org/c/901 Reviewed-by: waddlesplash <waddlesplash@gmail.com>
This commit is contained in:
parent
71aec29751
commit
27aefde9fd
@ -255,7 +255,7 @@ BFSPartitionHandle::Repair(bool checkOnly)
|
||||
while (ioctl(fd, BFS_IOCTL_CHECK_NEXT_NODE, &result,
|
||||
sizeof(result)) == 0) {
|
||||
if (++counter % 50 == 0)
|
||||
printf("%9" B_PRId64 " nodes processed\x1b[1A\n", counter);
|
||||
printf("%9" B_PRIu64 " nodes processed\x1b[1A\n", counter);
|
||||
|
||||
if (result.pass == BFS_CHECK_PASS_BITMAP) {
|
||||
if (result.errors) {
|
||||
|
Loading…
Reference in New Issue
Block a user