From b30a1bf447b75c7260eaafb1acaa7d008bdf48ea Mon Sep 17 00:00:00 2001 From: Karoly Balogh Date: Fri, 4 Feb 2022 11:43:49 +0100 Subject: [PATCH] * rtl/atari: naming: gemdos_free is actually gemdos_mfree. no functional change. --- rtl/atari/gemdos.inc | 2 +- rtl/atari/sysheap.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rtl/atari/gemdos.inc b/rtl/atari/gemdos.inc index 46d764d3cd..25a1110532 100644 --- a/rtl/atari/gemdos.inc +++ b/rtl/atari/gemdos.inc @@ -152,7 +152,7 @@ function gemdos_fattrib(filename: pchar; wflag: smallint; attrib: smallint): sma function gemdos_dgetpath(path: pchar; driveno: smallint): smallint; syscall 1 71; function gemdos_malloc(number: dword): pointer; syscall 1 72; -function gemdos_free(block: pointer): dword; syscall 1 73; +function gemdos_mfree(block: pointer): dword; syscall 1 73; function gemdos_mshrink(zero: word; block: pointer; newsiz: longint): longint; syscall 1 74; function gemdos_pexec(mode: word; name: pchar; cmdline: pchar; env: pchar): longint; syscall 1 75; procedure gemdos_pterm(returncode: smallint); syscall 1 76; diff --git a/rtl/atari/sysheap.inc b/rtl/atari/sysheap.inc index e6b825f6ba..91d984939b 100644 --- a/rtl/atari/sysheap.inc +++ b/rtl/atari/sysheap.inc @@ -27,5 +27,5 @@ end; procedure SysOSFree(p: pointer; size: ptruint); begin - gemdos_free(p); + gemdos_mfree(p); end;