Fix compiler warnings.

These were detected by github Actions but not by Xcode.
This commit is contained in:
joevt
2022-12-24 21:07:58 -08:00
parent f2db6bd066
commit 19adb54cd8
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -100,7 +100,7 @@ void ppc_exception_handler(Except_Type exception_type, uint32_t srr1_bits) {
break;
default:
ABORT_F("Unknown exception occured: %X\n", exception_type);
ABORT_F("Unknown exception occured: %X\n", (unsigned)exception_type);
break;
}