From b043ac88e1991c810d103d35419556540a76700a Mon Sep 17 00:00:00 2001 From: Liu Hua Date: Sat, 19 Mar 2016 22:01:40 +0800 Subject: [PATCH] fix a tiny typo to avoid compile error Signed-off-by: Liu Hua --- src/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.h b/src/util.h index c2b57e8..02fdb08 100644 --- a/src/util.h +++ b/src/util.h @@ -9,7 +9,7 @@ struct env; #ifdef WITH_DEBUG #define dprintf(fmt, ...) \ - fprintf(stdout, fmt, ##_VA_ARGS__) + fprintf(stdout, fmt, ##__VA_ARGS__) #else #define dprintf(fmr, ...) #endif