Formatting fixes

This commit is contained in:
jdflyer
2022-01-17 20:19:43 -07:00
parent ecc987f34c
commit 252c5daba7
6 changed files with 31 additions and 22 deletions
+1 -1
View File
@@ -669,7 +669,7 @@ extern "C" void ModuleUnresolved() {
OSReport_Error("Address: Back Chain LR Save\n");
u32 i = 0;
u32* stackPtr = (u32*)OSGetStackPointer();
while(stackPtr!=NULL&&(u32)stackPtr!=0xFFFFFFFF&&i++<0x10) {
while((stackPtr != NULL) && ((u32)stackPtr != 0xFFFFFFFF) && (i++ < 0x10)) {
OSReport_Error("0x%08x: 0x%08x 0x%08x\n",stackPtr,*stackPtr,*(stackPtr+1));
stackPtr = (u32*)*stackPtr;
}