From 85f8cbf3d96d1b1dc0127398b762d58676d4f4f4 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Wed, 6 Mar 2019 19:56:37 -0500 Subject: prefix arguments with __ --- src/nonstd/ASSERT_NONZERO.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/nonstd/ASSERT_NONZERO.c') 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 #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 -- cgit v1.2.1