1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00

misc.c: use bool in debug_memdump signature

This commit is contained in:
Pavel I. Kryukov 2018-11-03 20:10:21 +03:00 committed by Simon Tatham
parent 80db674648
commit 506a0b1b77

2
misc.c
View File

@ -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;