diff options
author | dreammaster | 2019-05-22 05:48:52 +0100 |
---|---|---|
committer | Paul Gilbert | 2019-05-24 18:21:07 -0700 |
commit | aa5fd603b6fd623c138fd3529176847b5b538e49 (patch) | |
tree | 1c9003a4ef67b73ae89c5fba0e6024969e710f03 /engines/glk/tads/tads2/memory_cache_heap.h | |
parent | 0c02346b48e068dddff81bf4fde57040135deb51 (diff) | |
download | scummvm-rg350-aa5fd603b6fd623c138fd3529176847b5b538e49.tar.gz scummvm-rg350-aa5fd603b6fd623c138fd3529176847b5b538e49.tar.bz2 scummvm-rg350-aa5fd603b6fd623c138fd3529176847b5b538e49.zip |
GLK: TADS2: Compilation fixes
Diffstat (limited to 'engines/glk/tads/tads2/memory_cache_heap.h')
-rw-r--r-- | engines/glk/tads/tads2/memory_cache_heap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/tads/tads2/memory_cache_heap.h b/engines/glk/tads/tads2/memory_cache_heap.h index 269cdec3ad..6405f4957c 100644 --- a/engines/glk/tads/tads2/memory_cache_heap.h +++ b/engines/glk/tads/tads2/memory_cache_heap.h @@ -43,7 +43,7 @@ namespace TADS2 { * An out-of-memory error is signalled if insufficient memory * is available. The comment is for debugging purposes only. */ -uchar *mchalo(errcxdef *ctx, size_t siz, char *comment); +uchar *mchalo(errcxdef *ctx, size_t siz, const char *comment); /* allocate a structure */ #define MCHNEW(errctx, typ, comment) \ |