From: David McCullough Date: Fri, 22 Jan 2010 01:54:20 +0000 (+0000) Subject: Make varargs debug macros GCC-2.x compatible. X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=2995600ef42019578715f31c21531e4fba40bc46;p=elf2flt.git Make varargs debug macros GCC-2.x compatible. Signed-off-by: Mike Frysinger --- diff --git a/stubs.h b/stubs.h index 7e5308d..615cab5 100644 --- a/stubs.h +++ b/stubs.h @@ -41,7 +41,7 @@ #define _debug(lvl, fmt, args...) \ do { \ if (lvl <= DEBUG) { \ - fprintf(stderr, "%s:%i: " fmt, __func__, __LINE__, ## args); \ + fprintf(stderr, "%s:%i: " fmt, __func__, __LINE__ , ## args); \ fflush(stderr); \ } \ } while (0)