1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Compression support

This commit is contained in:
Brian Fiete 2021-12-03 14:18:04 -08:00
parent 7e1b2c2469
commit fbb622e956
4 changed files with 11 additions and 2 deletions

View file

@ -421,7 +421,7 @@ void ContiguousHeap::DebugDump()
str += "Merged";
break;
default:
str += "??????";
str += "??????";
}
str += "\n";
@ -440,7 +440,7 @@ void ContiguousHeap::DebugDump()
for (auto idx : mFreeList)
{
auto block = CH_REL_TO_ABS(idx);
char* kind = "??";
const char* kind = "??";
if (block->mKind == ChBlockKind_Unused)
kind = "Unused";
else