summaryrefslogtreecommitdiff
path: root/command.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-01-09 21:25:44 +0000
committertron <tron@openttd.org>2005-01-09 21:25:44 +0000
commit4450ff105c6ddb9ab855b9cf8b4dcbea315b11e0 (patch)
tree3a16c9375ca0fbd2f06a419b1b0876bf48c7a3e0 /command.c
parentd2e02df8814edab9e04437d8208d2e7786dfd999 (diff)
downloadopenttd-4450ff105c6ddb9ab855b9cf8b4dcbea315b11e0.tar.xz
(svn r1451) Fix some of the signed/unsigned comparison warnings
Diffstat (limited to 'command.c')
-rw-r--r--command.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/command.c b/command.c
index eff7af906..010c461f6 100644
--- a/command.c
+++ b/command.c
@@ -313,11 +313,11 @@ static CommandProc * const _command_proc_table[] = {
};
/* This function range-checks a cmd, and checks if the cmd is not NULL */
-bool IsValidCommand(int cmd)
+bool IsValidCommand(uint cmd)
{
cmd = cmd & 0xFF;
- if (cmd < 0 || cmd >= lengthof(_command_proc_table) || _command_proc_table[cmd] == NULL)
+ if (cmd >= lengthof(_command_proc_table) || _command_proc_table[cmd] == NULL)
return false;
return true;