summaryrefslogtreecommitdiff
path: root/console.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2004-09-14 16:30:33 +0000
committertruelight <truelight@openttd.org>2004-09-14 16:30:33 +0000
commit3562d814fb1d01935e3aeaaa8069e20f8d532fc6 (patch)
treef98a6ac43d66b06b91aa0ebdcb878842174f9716 /console.c
parentd48ce392b2569c3d856caf4f069b9bffbf0de9cc (diff)
downloadopenttd-3562d814fb1d01935e3aeaaa8069e20f8d532fc6.tar.xz
(svn r249) -Fix: warning fix in console.c/h (Tron)
Diffstat (limited to 'console.c')
-rw-r--r--console.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/console.c b/console.c
index 612c6dbf0..06d59059a 100644
--- a/console.c
+++ b/console.c
@@ -768,7 +768,7 @@ bool IConsoleCmdHookHandle(_iconsole_cmd * hook_cmd, byte type)
return proc(hook_cmd);
}
-void IConsoleCmdExec(byte * cmdstr)
+void IConsoleCmdExec(const byte* cmdstr)
{
_iconsole_var * (*function)(byte argc, byte* argv[], byte argt[]);
byte * tokens[20];
@@ -799,7 +799,7 @@ void IConsoleCmdExec(byte * cmdstr)
longtoken=false;
valid_token=false;
skip_lt_change=false;
- l=strlen((char *) cmdstr);
+ l=strlen(cmdstr);
i=0;
c=0;
tokens[c] = tokenstream;