Fix typo in CRASH_COND leading to unexpected continuation after fail

pull/593/head
Mai Lavelle 2021-08-01 17:17:36 -04:00
parent e08ecdc28c
commit 2f534ddd88
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ typedef float real_t;
do { \
if (unlikely(cond)) { \
FATAL_PRINT(ERR_MSG_COND(cond)); \
return; \
GENERATE_TRAP; \
} \
} while (0)
#endif