diff options
Diffstat (limited to 'src/boot/stackcheck.c')
| -rw-r--r-- | src/boot/stackcheck.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/boot/stackcheck.c b/src/boot/stackcheck.c index f7eefad71..aa0972d2f 100644 --- a/src/boot/stackcheck.c +++ b/src/boot/stackcheck.c @@ -98,6 +98,11 @@ u32 StackCheck_GetState(StackEntry* entry) { ret = STACK_STATUS_OK; } +#if !OOT_DEBUG + // This string is still in .rodata for retail builds + (void)"(null)"; +#endif + PRINTF("head=%08x tail=%08x last=%08x used=%08x free=%08x [%s]\n", entry->head, entry->tail, last, used, free, entry->name != NULL ? entry->name : "(null)"); PRINTF(VT_RST); |
