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:
Rob Gill 2019-01-26 16:24:03 +10:00 committed by waddlesplash
parent 71aec29751
commit 27aefde9fd

View File

@ -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) {