diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-09-12 18:34:50 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-09-12 18:34:50 +0200 |
commit | 63ef5c4f6ed5997be1135189f6bb5872daafa93a (patch) | |
tree | 9c2f0efd51eb26e77a2179c4c4ff5649b4a7f097 /src | |
parent | f022d3669192f6b81809f325d310a5d2ca449385 (diff) |
Remove redundant parenthesis
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |