aboutsummaryrefslogtreecommitdiff
path: root/common/debugger.cpp
diff options
context:
space:
mode:
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 7f771ae2f6..47fb6e2a3d 100644
--- a/common/debugger.cpp
+++ b/common/debugger.cpp
@@ -196,7 +196,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 {