mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-14 02:50:23 +00:00
Add explicit != NULL
in some ternaries
This commit is contained in:
parent
c801337dde
commit
8bb2e22c00
4 changed files with 11 additions and 10 deletions
|
@ -99,7 +99,7 @@ StackStatus StackCheck_GetState(StackEntry* entry) {
|
|||
}
|
||||
|
||||
osSyncPrintf("head=%08x tail=%08x last=%08x used=%08x free=%08x [%s]\n", entry->head, entry->tail, last, used, free,
|
||||
entry->name ? entry->name : "(null)");
|
||||
entry->name != NULL ? entry->name : "(null)");
|
||||
osSyncPrintf(VT_RST);
|
||||
|
||||
if (ret != STACK_STATUS_OK) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue