aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGabriel <g2p.code@gmail.com>2013-03-12 17:01:49 +0100
committerGabriel <g2p.code@gmail.com>2013-03-12 17:01:49 +0100
commit445032e1b60f2812b2966ed8346b3f3160f1f5a9 (patch)
tree26d209ac9f514adb7f5517c300682673ac75ac79
parent727c189c596c2ce3e41eabdf81e12a31d6eaad3a (diff)
downloadbcache-tools-445032e1b60f2812b2966ed8346b3f3160f1f5a9.tar.gz
Use uppercase hex when showing csum and expected.
-rw-r--r--bcache-super-show.c2
1 files changed, 1 insertions, 1 deletions
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");