mirror of
https://github.com/ckolivas/lrzip.git
synced 2026-04-21 06:03:54 +00:00
Work around rest arguments warnings.
This commit is contained in:
parent
43f407aa04
commit
af0976f804
2 changed files with 15 additions and 15 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue