aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gray2004-08-23 05:53:41 +0000
committerJonathan Gray2004-08-23 05:53:41 +0000
commita3d531a9fd87bd385391c4f3dbcf0922e8199047 (patch)
tree4a0019fe2799f611e27714e0ddf72440ae67cc7c
parentdffbcceb9150c6e35fb777b6f412f04c38ca04ca (diff)
downloadscummvm-rg350-a3d531a9fd87bd385391c4f3dbcf0922e8199047.tar.gz
scummvm-rg350-a3d531a9fd87bd385391c4f3dbcf0922e8199047.tar.bz2
scummvm-rg350-a3d531a9fd87bd385391c4f3dbcf0922e8199047.zip
remove cast that produces a warning
svn-id: r14696
-rw-r--r--common/debugger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/debugger.cpp b/common/debugger.cpp
index 3cc3295233..47fb6e2a3d 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((char *)param[0], '[');
+ char *chr = strchr(param[0], '[');
if (!chr) {
DebugPrintf("You must access this array as %s[element]\n", param[0]);
} else {