mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2024-12-28 04:23:38 +01:00
assert: fix silly mistake
This commit is contained in:
parent
d261db447b
commit
66463bfe17
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue