Work around rest arguments warnings.

This commit is contained in:
ckolivas 2012-03-07 16:01:13 +11:00
parent 43f407aa04
commit af0976f804
2 changed files with 15 additions and 15 deletions

View file

@ -19,8 +19,8 @@ extern int errno;
#include <termios.h>
#include <Lrzip.h>
#define failure(format, args...) do { \
fprintf(stderr, format, ##args); \
#define failure(...) do { \
fprintf(stderr, __VA_ARGS__); \
exit(1); \
} while (0)