G

G Programming Language
git clone http://git.omkov.net/G
Log | Tree | Refs | README | Download

AuthorJakob Wakeling <[email protected]>
Date2021-12-08 06:42:15
Commit954d27a5abbf25a73a0df3b21660239ae9a1c9d2
Parent481ede8533f27a0b107f6e21a5fdeffb5bdeee75

util: Remove redundant semicolon in util/stack

Diffstat

M src/util/stack.h | 2 +-

1 files changed, 1 insertions, 1 deletions

diff --git a/src/util/stack.h b/src/util/stack.h
index b16b8d1..914d80b 100644
--- a/src/util/stack.h
+++ b/src/util/stack.h
@@ -10,7 +10,7 @@
 
 #include "util.h"
 
-#define STACK_PUSH(s, e) stack_push(s, (void *)(UINT)(e));
+#define STACK_PUSH(s, e) stack_push(s, (void *)(UINT)(e))
 
 typedef struct { void *a; UINT al, ac, el; void (*free)(void *); } stack;