assert: fix silly mistake

This commit is contained in:
Lephenixnoir 2021-05-30 23:16:09 +02:00
parent d261db447b
commit 66463bfe17
Signed by untrusted user: Lephenixnoir
GPG Key ID: 1BBA026E13FC0495
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ void __assert_fail(char const *__file, int __line, char const *__function,
#else
# define assert(expression) \
((expression) \
? (void)0 : \
? (void)0 \
: __assert_fail(__FILE__, __LINE__, __PRETTY_FUNCTION__, #expression))
#endif