X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/1a602f0313ae7b0b5e49bae434616373bb7ca681..d0912d1f5b4c65b0be0c3fba2a264a1cfbf96d08:/misc.h diff --git a/misc.h b/misc.h index aa723629..7d0ee4d5 100644 --- a/misc.h +++ b/misc.h @@ -50,9 +50,9 @@ void bufchain_fetch(bufchain *ch, void *data, int len); */ #ifdef DEBUG -void dprintf(char *fmt, ...); +void debug_printf(char *fmt, ...); void debug_memdump(void *buf, int len, int L); -#define debug(x) (dprintf x) +#define debug(x) (debug_printf x) #define dmemdump(buf,len) debug_memdump (buf, len, 0); #define dmemdumpl(buf,len) debug_memdump (buf, len, 1); #else