fix: added semicolon to abort() in UNREACHABLE
This commit is contained in:
parent
f84e3a3a27
commit
1631047f33
1 changed files with 1 additions and 1 deletions
2
debug.h
2
debug.h
|
|
@ -68,7 +68,7 @@ extern int g_debug_log_lvl;
|
||||||
|
|
||||||
#define UNREACHABLE(...) do {\
|
#define UNREACHABLE(...) do {\
|
||||||
LOG_ERROR(__VA_ARGS__);\
|
LOG_ERROR(__VA_ARGS__);\
|
||||||
abort()\
|
abort();\
|
||||||
} while(0)
|
} while(0)
|
||||||
|
|
||||||
#endif // !CUTES_DEBUG_H
|
#endif // !CUTES_DEBUG_H
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue