[Scummvm-cvs-logs] CVS: scummvm/saga expr.cpp,1.6,1.7

Pawel Kolodziejski aquadran at users.sourceforge.net
Sat Aug 14 02:11:33 CEST 2004


Update of /cvsroot/scummvm/scummvm/saga
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11201/scummvm/saga

Modified Files:
	expr.cpp 
Log Message:
fixed warnings

Index: expr.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/saga/expr.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- expr.cpp	2 Aug 2004 16:20:34 -0000	1.6
+++ expr.cpp	14 Aug 2004 09:10:13 -0000	1.7
@@ -273,7 +273,7 @@
 	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;
 		}





More information about the Scummvm-git-logs mailing list