From 4916148749c05edc2eb3d036214c1c83be905d97 Mon Sep 17 00:00:00 2001 From: Johannes Schriewer Date: Mon, 30 Jul 2018 02:51:49 +0200 Subject: [PATCH] Bugfix: No-Debug version of debug.h had an error --- src/debug.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/debug.h b/src/debug.h index bf0c477..435101c 100644 --- a/src/debug.h +++ b/src/debug.h @@ -42,7 +42,7 @@ static inline void hexdump(char *data, size_t len, int indent) { fprintf(stdout, "%c", (uint8_t)c); } else { fprintf(stdout, " "); - } + } } fprintf(stdout, "\n"); @@ -53,7 +53,7 @@ static inline void hexdump(char *data, size_t len, int indent) { #else /* DEBUG */ #define DEBUG_LOG(fmt, ...) /* */ -#define hexdump(_data, _len) /* */ +#define hexdump(_data, _len, _indent) /* */ #endif /* DEBUG */