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_NONNULL.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/nonstd/ASSERT_NONNULL.c') diff --git a/src/nonstd/ASSERT_NONNULL.c b/src/nonstd/ASSERT_NONNULL.c index e65020fd..26a6138e 100644 --- a/src/nonstd/ASSERT_NONNULL.c +++ b/src/nonstd/ASSERT_NONNULL.c @@ -1,12 +1,12 @@ #include #ifndef NDEBUG -#define ASSERT_NONNULL(_ptr) do { \ - if (!_ptr) { \ +#define ASSERT_NONNULL(__ptr) do { \ + if (!__ptr) { \ struct __constraint_info _ci = {0}; \ _ci.func = __func__; \ __libc.stdlib.constraint_handler("Undefined behavior: " \ - "Parameter " #_ptr " can not be NULL", &_ci, EFAULT); \ + "Parameter " #__ptr " can not be NULL", &_ci, EFAULT); \ } \ } while (0) #else -- cgit v1.2.1