diff options
-rw-r--r-- | tst/va_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tst/va_test.c b/tst/va_test.c index b8a83f4..9b527f2 100644 --- a/tst/va_test.c +++ b/tst/va_test.c @@ -5,9 +5,9 @@ #ifdef __GNUC__ -#define espik_debug_print (fmt, ...) \ +#define espik_debug_print(fmt, ...) \ { \ - fprintf (stdout, "%s, %s, %i: ", __FUNCTION__, __FILE__, __LINE__); \ + fprintf (stdout, "%s, %s, %i: \n", __func__, __FILE__, __LINE__); \ vfprintf (stdout, fmt, __VA_ARGS__); \ } |