summaryrefslogtreecommitdiff
path: root/src/nonstd/ASSERT_NONZERO.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nonstd/ASSERT_NONZERO.c')
-rw-r--r--src/nonstd/ASSERT_NONZERO.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nonstd/ASSERT_NONZERO.c b/src/nonstd/ASSERT_NONZERO.c
index 24a3f9a9..e48e775a 100644
--- a/src/nonstd/ASSERT_NONZERO.c
+++ b/src/nonstd/ASSERT_NONZERO.c
@@ -1,12 +1,12 @@
#include <nonstd/assert.h>
#ifndef NDEBUG
-#define ASSERT_NONZERO(_n) do { \
- if (!_n) { \
+#define ASSERT_NONZERO(__n) do { \
+ if (!__n) { \
struct __constraint_info _ci = {0}; \
_ci.func = __func__; \
__libc.stdlib.constraint_handler("Undefined behavior: " \
- "Parameter " #_n " can not be 0", &_ci, ERANGE); \
+ "Parameter " #__n " can not be 0", &_ci, ERANGE); \
} \
} while (0)
#else