aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-09-12 18:34:50 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-09-12 18:34:50 +0200
commit63ef5c4f6ed5997be1135189f6bb5872daafa93a (patch)
tree9c2f0efd51eb26e77a2179c4c4ff5649b4a7f097 /src
parentf022d3669192f6b81809f325d310a5d2ca449385 (diff)
Remove redundant parenthesis
Diffstat (limited to 'src')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index dc00391..c301fdf 100644
--- a/src/main.c
+++ b/src/main.c
@@ -20,7 +20,7 @@
#define MAX(x, y) ((x) > (y) ? (x) : (y))
#define MAXVARS (26 * 2)
-#define lengthof(x) ((sizeof(x) / sizeof(*(x))))
+#define lengthof(x) (sizeof(x) / sizeof(*(x)))
#ifndef __has_builtin
# define __has_builtin(x) (0)