From ce42f9567eca2b71634bbd0de3638b5957c18149 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Sun, 29 Oct 2017 13:08:11 +1100 Subject: [PATCH] [client] increased padding for debug output of function name --- client/debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/debug.h b/client/debug.h index 3d43122b..33e5dd20 100644 --- a/client/debug.h +++ b/client/debug.h @@ -1,7 +1,7 @@ #include #ifdef DEBUG - #define DEBUG_PRINT(type, fmt, args...) do {fprintf(stderr, type " %20s:%-5u | %-20s | " fmt "\n", __FILE__, __LINE__, __FUNCTION__, ##args);} while (0) + #define DEBUG_PRINT(type, fmt, args...) do {fprintf(stderr, type " %20s:%-5u | %-24s | " fmt "\n", __FILE__, __LINE__, __FUNCTION__, ##args);} while (0) #else #define DEBUG_PRINT(type, fmt, args...) do {} while(0) #endif