From 506a0b1b77d2f8852e9542a79dde98ff82630b0b Mon Sep 17 00:00:00 2001 From: "Pavel I. Kryukov" Date: Sat, 3 Nov 2018 20:10:21 +0300 Subject: [PATCH] misc.c: use bool in debug_memdump signature --- misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc.c b/misc.c index 4e8764fb..7e3acd71 100644 --- a/misc.c +++ b/misc.c @@ -991,7 +991,7 @@ void debug_printf(const char *fmt, ...) } -void debug_memdump(const void *buf, int len, int L) +void debug_memdump(const void *buf, int len, bool L) { int i; const unsigned char *p = buf;