From cea081452750a357baae9edf2764dcd4f3b78ca9 Mon Sep 17 00:00:00 2001 From: Maksym Mamontov Date: Fri, 19 Aug 2022 14:10:00 +0300 Subject: [PATCH] Pretty printing. --- tests/test_crypto.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_crypto.cpp b/tests/test_crypto.cpp index d7040f4e..38a49fd8 100644 --- a/tests/test_crypto.cpp +++ b/tests/test_crypto.cpp @@ -22,14 +22,14 @@ bool equalCtx(const BLOWFISH_CTX& a, const BLOWFISH_CTX& b) for (size_t i = 0; i < sizeof(a.P); ++i) if (a.P[i] != b.P[i]) { - printf("Failed for P at %ld: 0%x != 0%x\n", i, a.P[i], b.P[i]); + printf("Failed for P at %ld: 0x%x != 0x%x\n", i, a.P[i], b.P[i]); return false; } for (size_t i = 0; i < 4; ++i) for (size_t j = 0; j < 256; ++j) if (a.S[i][j] != b.S[i][j]) { - printf("Failed for S at %ld, %ld: 0%x != 0%x\n", i, j, a.S[i][j], b.S[i][j]); + printf("Failed for S at %ld, %ld: 0x%x != 0x%x\n", i, j, a.S[i][j], b.S[i][j]); return false; } -- 2.43.2