aboutsummaryrefslogtreecommitdiff
path: root/common/debugger.cpp
diff options
context:
space:
mode:
authorPaweł Kołodziejski2004-09-04 14:53:14 +0000
committerPaweł Kołodziejski2004-09-04 14:53:14 +0000
commit0901b17828fa5f74e622d0079f3c4501e846aaa8 (patch)
tree748123d2f1a5964e8ee3fc96397ce963e625b60b /common/debugger.cpp
parent9032d086afde50abdcba39e2fc557d8c4058ee20 (diff)
downloadscummvm-rg350-0901b17828fa5f74e622d0079f3c4501e846aaa8.tar.gz
scummvm-rg350-0901b17828fa5f74e622d0079f3c4501e846aaa8.tar.bz2
scummvm-rg350-0901b17828fa5f74e622d0079f3c4501e846aaa8.zip
fixed warning, updated msvc projects
svn-id: r14894
Diffstat (limited to 'common/debugger.cpp')
-rw-r--r--common/debugger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/debugger.cpp b/common/debugger.cpp
index 47fb6e2a3d..900fb03b87 100644
--- a/common/debugger.cpp
+++ b/common/debugger.cpp
@@ -227,7 +227,7 @@ bool Debugger<T>::RunCommand(const char *inputOrig) {
break;
// Integer array
case DVAR_INTARRAY: {
- char *chr = strchr(param[0], '[');
+ char *chr = (char *)strchr(param[0], '[');
if (!chr) {
DebugPrintf("You must access this array as %s[element]\n", param[0]);
} else {