fix: added semicolon to abort() in UNREACHABLE

This commit is contained in:
Sara 2024-09-10 15:07:02 +02:00
parent f84e3a3a27
commit 1631047f33

View file

@ -68,7 +68,7 @@ extern int g_debug_log_lvl;
#define UNREACHABLE(...) do {\
LOG_ERROR(__VA_ARGS__);\
abort()\
abort();\
} while(0)
#endif // !CUTES_DEBUG_H