diff options
Diffstat (limited to 'console_cmds.c')
-rw-r--r-- | console_cmds.c | 2 |
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) { |