diff options
| author | Jakob Kaivo <jkk@ung.org> | 2019-03-06 19:56:37 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2019-03-06 19:56:37 -0500 |
| commit | 85f8cbf3d96d1b1dc0127398b762d58676d4f4f4 (patch) | |
| tree | 98a5ec2dd988d53370ed4bd8db7af1c133c535fb /src/nonstd/ASSERT_NONNULL.c | |
| parent | 4dd73957883dd09ac0e7d7de4974e3696298b0c0 (diff) | |
prefix arguments with __
Diffstat (limited to 'src/nonstd/ASSERT_NONNULL.c')
| -rw-r--r-- | src/nonstd/ASSERT_NONNULL.c | 6 |
1 files changed, 3 insertions, 3 deletions
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 <nonstd/assert.h> #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 |
