mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-16 03:50:20 +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
|
@ -708,7 +708,7 @@ void __osDisplayArena(Arena* arena) {
|
|||
|
||||
if (!iter->isFree) {
|
||||
osSyncPrintf(" [%016llu:%2d:%s:%d]", OS_CYCLES_TO_NSEC(iter->time), iter->threadId,
|
||||
iter->filename ? iter->filename : "**NULL**", iter->line);
|
||||
iter->filename != NULL ? iter->filename : "**NULL**", iter->line);
|
||||
}
|
||||
|
||||
osSyncPrintf("\n");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue