summaryrefslogtreecommitdiff
path: root/console_cmds.c
diff options
context:
space:
mode:
authordominik <dominik@openttd.org>2005-01-23 23:58:35 +0000
committerdominik <dominik@openttd.org>2005-01-23 23:58:35 +0000
commita94a7b0775b207c3d17b33ee76adc7ec3d59c0ca (patch)
treeccc30bedd6ad1caed0ed2cac2e9686b391436ee0 /console_cmds.c
parentc1db3ea675e31ae2a9ef592836f859b6af3dfa47 (diff)
downloadopenttd-a94a7b0775b207c3d17b33ee76adc7ec3d59c0ca.tar.xz
(svn r1631) A couple of fixes for the signed/unsigned warnings. Only train_cmd.c remains to need fixing...
Diffstat (limited to 'console_cmds.c')
-rw-r--r--console_cmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/console_cmds.c b/console_cmds.c
index 0495ccf20..3a0562bb0 100644
--- a/console_cmds.c
+++ b/console_cmds.c
@@ -469,7 +469,7 @@ DEF_CONSOLE_CMD(ConResetCompany)
NetworkClientInfo *ci;
if (argc == 2) {
- uint32 index = atoi(argv[1]);
+ byte index = atoi(argv[1]);
/* Check valid range */
if (index < 1 || index > MAX_PLAYERS) {