Fixes (Doc typos, pragma once worng type, non-debug fatal compile fail)

This commit is contained in:
2023-08-09 09:50:12 -04:00
parent b5fa864318
commit 5aff89262b
8 changed files with 46 additions and 63 deletions

View File

@ -46,12 +46,12 @@ void process_exit( u32 code );
while (0)
#else
# define fatal( fmt, ... ) \
do \
{ \
str_fmt_out_err_va( fmt, __VA_ARGS__ ); \
process_exit(1); \
} \
# define fatal( fmt, ... ) \
do \
{ \
str_fmt_out_err( fmt, __VA_ARGS__ ); \
process_exit(1); \
} \
while (0)
#endif