From d62ff5dca7b9bb7009d4edc91c2e3f31863ecb7d Mon Sep 17 00:00:00 2001 From: Paweł Kołodziejski Date: Sat, 14 Aug 2004 09:10:14 +0000 Subject: fixed warnings svn-id: r14603 --- saga/expr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'saga') 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; } -- cgit v1.2.3