1
0
Fork 0
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:
Dragorn421 2021-09-21 10:26:42 +02:00
parent c801337dde
commit 8bb2e22c00
No known key found for this signature in database
GPG key ID: C182A3A3996E8201
4 changed files with 11 additions and 10 deletions

View file

@ -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) {