1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2025-02-24 15:55:41 -05:00

Quote assertions

This commit is contained in:
Alex Kotov 2021-12-15 04:57:12 +05:00
parent 4a34caba5c
commit cc1061d1e8
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08

View file

@ -19,7 +19,7 @@ void kernaux_assert_fn(
const int line,
const char *const str
) {
kernaux_console_printf("[FAIL] assertion failed: %s:%u: %s\n",
kernaux_console_printf("[FAIL] assertion failed: %s:%u: \"%s\"\n",
file, line, str);
kernaux_arch_i386_hang();
}