aboutsummaryrefslogtreecommitdiff
path: root/src/io
diff options
context:
space:
mode:
authorJ08nY2017-04-10 17:17:27 +0200
committerJ08nY2017-04-10 17:44:23 +0200
commit29ca3257e86bba3fc559fdc42f1cf1858d921ecf (patch)
tree93f246d5b00b8a2573e52d754220dc2296dc918c /src/io
parent390fee30fa705c2618be20ae1b64f245c253bb5a (diff)
downloadecgen-29ca3257e86bba3fc559fdc42f1cf1858d921ecf.tar.gz
ecgen-29ca3257e86bba3fc559fdc42f1cf1858d921ecf.tar.zst
ecgen-29ca3257e86bba3fc559fdc42f1cf1858d921ecf.zip
Fix debug macro
Diffstat (limited to 'src/io')
-rw-r--r--src/io/output.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/io/output.h b/src/io/output.h
index 3560ab5..bf85e60 100644
--- a/src/io/output.h
+++ b/src/io/output.h
@@ -103,7 +103,7 @@ void output_init(const config_t *cfg);
void output_quit(void);
#ifdef DEBUG
-#define debug(...) fprintf(out, ##__VA_ARGS__)
+#define debug(...) fprintf(out, __VA_ARGS__)
#else
#define debug(...)
#endif