improve const correctness (#325)

This commit is contained in:
Jcw87
2023-04-29 17:32:56 -07:00
committed by GitHub
parent 0c4e853e4b
commit 4a29d25e65
19 changed files with 57 additions and 57 deletions
+2 -2
View File
@@ -217,11 +217,11 @@ static bool mCheckHeap;
/* 80005AD8-80005D4C 000418 0274+00 1/1 0/0 0/0 .text debugDisplay__Fv */
void debugDisplay() {
static char* desc1[5] = {
static const char* desc1[5] = {
"", "TotalFree", "MaxUsed ", "Used ", "RelUsed ",
};
static char* desc2[5] = {
static const char* desc2[5] = {
"", "/ MaxFree", "/HeapSize", "Blk/Bytes", "Blk/Bytes",
};