From 445032e1b60f2812b2966ed8346b3f3160f1f5a9 Mon Sep 17 00:00:00 2001 From: Gabriel Date: Tue, 12 Mar 2013 17:01:49 +0100 Subject: [PATCH] Use uppercase hex when showing csum and expected. --- bcache-super-show.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bcache-super-show.c b/bcache-super-show.c index 47c8b87c..67f141eb 100644 --- a/bcache-super-show.c +++ b/bcache-super-show.c @@ -83,7 +83,7 @@ int main(int argc, char **argv) exit(2); } - printf("sb.csum\t\t\t0x%" PRIx64, sb.csum); + printf("sb.csum\t\t\t%" PRIX64, sb.csum); expected_csum = csum_set(&sb); if (sb.csum == expected_csum) { printf(" [match]\n");