aboutsummaryrefslogtreecommitdiff
path: root/saga
diff options
context:
space:
mode:
authorPaweł Kołodziejski2004-08-14 09:10:14 +0000
committerPaweł Kołodziejski2004-08-14 09:10:14 +0000
commitd62ff5dca7b9bb7009d4edc91c2e3f31863ecb7d (patch)
treecf6e3788676edd2e59d926442f0f0f18166b0d8e /saga
parent80bcaf8d0943ffcaa8f669fd773374877f7e1428 (diff)
downloadscummvm-rg350-d62ff5dca7b9bb7009d4edc91c2e3f31863ecb7d.tar.gz
scummvm-rg350-d62ff5dca7b9bb7009d4edc91c2e3f31863ecb7d.tar.bz2
scummvm-rg350-d62ff5dca7b9bb7009d4edc91c2e3f31863ecb7d.zip
fixed warnings
svn-id: r14603
Diffstat (limited to 'saga')
-rw-r--r--saga/expr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/saga/expr.cpp b/saga/expr.cpp
index 3ecfc38e16..9de0681906 100644
--- a/saga/expr.cpp
+++ b/saga/expr.cpp
@@ -273,7 +273,7 @@ char *EXPR_ReadString(const char **string_p, int *len, int term_char) {
int in_char;
if (term_char > 0) {
- term_p = strchr(*string_p, term_char);
+ term_p = (char *)strchr(*string_p, term_char);
if (term_p == NULL) {
return NULL;
}