Fix memory all command

This commit is contained in:
Wolfgang Lux 2021-01-15 15:51:00 +01:00
parent e2a980231a
commit 19bcc31928
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2021-01-15 Wolfgang Lux <wolfgang.lux@gmail.com>
* EcProcess.m(cmdMesgmemory:):
Fix output of 'memory all' command to really report all
allocations.
2020-04-06 Richard Frith-Macdonald <rfm@gnu.org>
* EcControl.m:

View file

@ -4942,7 +4942,7 @@ With two parameters ('maximum' and a number),\n\
{
const char* list;
list = (const char*)GSDebugAllocationList(NO);
list = (const char*)GSDebugAllocationListAll();
[self cmdPrintf: @"Memory total allocation stats at %@:\n%s",
[NSDate date], list];
}