Commit cfaa81dd authored by Nils Goroll's avatar Nils Goroll

remove unused __VA_ARGS__

The P macro is only ever called with one argument and Solaris cc
rightly emits E_ARGUEMENT_MISMATCH (yes, with the typo)
parent 52d3477d
......@@ -36,8 +36,8 @@
#include "tbl/vsc_levels.h"
#undef VSC_LEVEL_F
#define P(x, ...) \
printf(x "\n", ##__VA_ARGS__)
#define P(x) \
printf(x "\n")
#define VSC_LEVEL_F(v,l,e,d) \
printf("%s – %s\n\t%s\n\n", l, e, d);
#define VSC_F(n, t, l, s, f, v, d, e) \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment