diff options
-rw-r--r-- | include/assert.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/assert.h b/include/assert.h index 5330df9..5305715 100644 --- a/include/assert.h +++ b/include/assert.h @@ -69,7 +69,7 @@ # endif # ifdef NDEBUG # define assert_perror(errnum) ((void)0) -#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) +# elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) # define assert_perror(errnum) \ ((void)((errnum == 0) ? 0 : (__assert_fail(NULL, errnum, __FILE__, __LINE__, __func__), 0))) # else |