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/ltk.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/ltk.h')
-rw-r--r-- | engines/glk/tads/tads2/ltk.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/glk/tads/tads2/ltk.h b/engines/glk/tads/tads2/ltk.h index 2fbe7a853b..fa66b8a7c7 100644 --- a/engines/glk/tads/tads2/ltk.h +++ b/engines/glk/tads/tads2/ltk.h @@ -56,13 +56,13 @@ extern void ltkfre(); * printf-style arguments must be passed in also, if the message * requires them. */ -extern void ltk_dlg(char *title, char *msg, ...); +extern void ltk_dlg(const char *title, const char *msg, ...); /* * ltk_errlog - Error logging function for LER routines. */ -extern void ltk_errlog(void *ctx, char *fac, int errCode, int agrc, erradef *argv); +extern void ltk_errlog(void *ctx, const char *fac, int errCode, int agrc, erradef *argv); /* |