summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/common.h b/common/common.h
index 4979f99d..37d15415 100644
--- a/common/common.h
+++ b/common/common.h
@@ -20,8 +20,8 @@
#define DIRECTORY_SEPARATOR '/'
#endif // _WIN32
-#define die(msg) do { fputs("error: " msg "\n", stderr); exit(1); } while (0)
-#define die_fmt(fmt, ...) do { fprintf(stderr, "error: " fmt "\n", ##__VA_ARGS__); exit(1); } while (0)
+#define die(msg) do { fputs("error: " msg "\n", stderr); exit(1); } while (0)
+#define die_fmt(fmt, ...) do { fprintf(stderr, "error: " fmt "\n", __VA_ARGS__); exit(1); } while (0)
//
// CLI argument parsing