From 101ccce895d585392c0808cfdd8f9a19467efbdf Mon Sep 17 00:00:00 2001 From: darkvater Date: Tue, 4 Jan 2005 16:04:28 +0000 Subject: [PATCH] (svn r1373) -Fix: compilation fix for windows --- console_cmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console_cmds.c b/console_cmds.c index 176e2731c2..f8077e56a2 100644 --- a/console_cmds.c +++ b/console_cmds.c @@ -150,7 +150,7 @@ static void LoadMap(uint no) BuildFileList(); /* Check if in range */ - if (no != 0 && no <= _fios_num) { + if (no != 0 && no <= (uint)_fios_num) { const FiosItem *item = &_fios_list[no - 1]; /* Load the file */