Updated memusage tool

This commit is contained in:
2023-02-14 16:05:43 +00:00
parent 71b57fd42c
commit 3312a38c7c
2 changed files with 4 additions and 1 deletions

View File

@@ -39,11 +39,14 @@ static void* trackerAllocator(void* pointer, size_t oldSize, size_t newSize) {
return mem; return mem;
} }
int main(int argc, char* argv[]) { int main(int argc, const char* argv[]) {
if (argc <= 1) { if (argc <= 1) {
return -1; return -1;
} }
//not used, except for print
Toy_initCommandLine(argc, argv);
//setup for runner //setup for runner
Toy_initDriveDictionary(); Toy_initDriveDictionary();