diff options
Diffstat (limited to 'assert')
-rw-r--r-- | assert/assert-perr.c | 8 | ||||
-rw-r--r-- | assert/assert.c | 8 |
2 files changed, 10 insertions, 6 deletions
diff --git a/assert/assert-perr.c b/assert/assert-perr.c index 3846529..1144530 100644 --- a/assert/assert-perr.c +++ b/assert/assert-perr.c @@ -75,9 +75,11 @@ __assert_perror_fail (int errnum, free (buf); } else - /* At least print a minimal message. */ -#define STR_N_LEN(str) str, sizeof (str) - 1 - __libc_write (STDERR_FILENO, STR_N_LEN ("Unexpected error.\n")); + { + /* At least print a minimal message. */ + static const char errstr[] = "Unexpected error.\n"; + __libc_write (STDERR_FILENO, errstr, sizeof (errstr) - 1); + } abort (); } diff --git a/assert/assert.c b/assert/assert.c index 453d2af..4f8fbfb 100644 --- a/assert/assert.c +++ b/assert/assert.c @@ -73,9 +73,11 @@ __assert_fail (const char *assertion, const char *file, unsigned int line, free (buf); } else - /* At least print a minimal message. */ -#define STR_N_LEN(str) str, sizeof (str) - 1 - __libc_write (STDERR_FILENO, STR_N_LEN ("Unexpected error.\n")); + { + /* At least print a minimal message. */ + static const char errstr[] = "Unexpected error.\n"; + __libc_write (STDERR_FILENO, errstr, sizeof (errstr) - 1); + } abort (); } |