aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas Voss <thomas.voss@humanwave.nl> 2024-01-18 13:41:26 +0100
committerThomas Voss <thomas.voss@humanwave.nl> 2024-01-18 13:41:26 +0100
commit0950c526c5a15f85001cdc65833c627659c1e914 (patch)
treeb8a67767714f5118b46c41d4783c4f1167ba9012 /src
parent7eeaef0536634b7f1b4d08528c10559e10a9eb8c (diff)
Remove semicolons from macro definitions
Diffstat (limited to 'src')
-rw-r--r--src/grab.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/grab.c b/src/grab.c
index 94ec7c4..e709bfc 100644
--- a/src/grab.c
+++ b/src/grab.c
@@ -25,8 +25,8 @@
#include "compat.h"
#include "da.h"
-#define die(...) err(EXIT_FAILURE, __VA_ARGS__);
-#define diex(...) errx(EXIT_FAILURE, __VA_ARGS__);
+#define die(...) err(EXIT_FAILURE, __VA_ARGS__)
+#define diex(...) errx(EXIT_FAILURE, __VA_ARGS__)
#define warn(...) \
do { \
warn(__VA_ARGS__); \