summaryrefslogtreecommitdiffstats
path: root/include/c.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/c.h')
-rw-r--r--include/c.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/c.h b/include/c.h
index 142583956..068e2676a 100644
--- a/include/c.h
+++ b/include/c.h
@@ -112,7 +112,7 @@
__typeof__(x) _a = (x); \
__typeof__(y) _b = (y); \
(void) (&_a == &_b); \
- a == b ? 0 : a > b ? 1 : -1; })
+ _a == _b ? 0 : _a > _b ? 1 : -1; })
#endif
#ifndef offsetof