From d7e7fcce18ae8379157cb89e848562b8ca722504 Mon Sep 17 00:00:00 2001 From: Romain Thomas Date: Sat, 24 Aug 2024 08:17:29 +0200 Subject: [PATCH] Fix typo --- src/internal_utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal_utils.cpp b/src/internal_utils.cpp index 84011a4886..f8695d28e6 100644 --- a/src/internal_utils.cpp +++ b/src/internal_utils.cpp @@ -74,7 +74,7 @@ std::string dump(const uint8_t* buffer, size_t size, out = prefix + "+" + std::string(22 * 3, '-') + "---+" + "\n" + prefix + "| "; } - if (i > 0 and i % 16 == 0) { + if (i > 0 && i % 16 == 0) { out += "\n" + prefix + "| "; }