summaryrefslogtreecommitdiffstats
path: root/eqn.c
diff options
context:
space:
mode:
Diffstat (limited to 'eqn.c')
-rw-r--r--eqn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eqn.c b/eqn.c
index 1db18ac3..52b76c45 100644
--- a/eqn.c
+++ b/eqn.c
@@ -45,7 +45,7 @@ struct eqnstr {
};
#define STRNEQ(p1, sz1, p2, sz2) \
- (sz1) == (sz2) && 0 == strncmp((p1), (p2), (sz1))
+ ((sz1) == (sz2) && 0 == strncmp((p1), (p2), (sz1)))
#define EQNSTREQ(x, p, sz) \
STRNEQ((x)->name, (x)->sz, (p), (sz))