[client] increased padding for debug output of function name

This commit is contained in:
Geoffrey McRae 2017-10-29 13:08:11 +11:00
parent 2dfd1c7b52
commit ce42f9567e

View File

@ -1,7 +1,7 @@
#include <stdio.h>
#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