Skip to content

Commit 6aa61b6

Browse files
committed
Slightly altered the heap error text
This is mainly to prevent the end of the text being cut off by the Jump Storage text.
1 parent 31b53f8 commit 6aa61b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ttyd-tools/rel/source/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ void checkHeaps()
426426
if (!valid)
427427
{
428428
sprintf(tempDisplayBuffer,
429-
"Standard Heap %" PRId32 " corrupted at 0x%08" PRIX32 "\n",
429+
"Standard Heap %" PRId32 " corrupt at 0x%08" PRIX32 "\n",
430430
i,
431431
reinterpret_cast<uint32_t>(currentChunk));
432432

@@ -470,7 +470,7 @@ void checkHeaps()
470470
if (!valid)
471471
{
472472
sprintf(tempDisplayBuffer,
473-
"Smart Heap corrupted at 0x%08" PRIX32 "\n",
473+
"Smart Heap corrupt at 0x%08" PRIX32 "\n",
474474
reinterpret_cast<uint32_t>(currentChunk));
475475

476476
// Add the text to the heap buffer

0 commit comments

Comments
 (0)