Print exit codes in hex

This commit is contained in:
Drew Galbraith 2023-06-17 00:03:09 -07:00
parent 528723e490
commit 0a909eae0e
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ extern "C" z_err_t SyscallHandler(uint64_t call_id, void* req, void* resp) {
switch (call_id) {
case Z_PROCESS_EXIT:
// FIXME: kill process here.
dbgln("Exit code: %u", req);
dbgln("Exit code: %x", req);
thread->Exit();
panic("Returned from thread exit");
break;