diff options
author | Matheus Macabu <mkbu95@gmail.com> | 2013-05-02 20:10:06 -0300 |
---|---|---|
committer | Matheus Macabu <mkbu95@gmail.com> | 2013-05-02 20:10:06 -0300 |
commit | 6509af19cb4dbba9d8af7489301e58dc8c6ca9f7 (patch) | |
tree | 30b9ace58599e084f395d53bc2e73123da815311 /src/common | |
parent | 7aa95956da289b7c94de45ae41e2818c795a8f48 (diff) | |
download | hercules-6509af19cb4dbba9d8af7489301e58dc8c6ca9f7.tar.gz hercules-6509af19cb4dbba9d8af7489301e58dc8c6ca9f7.tar.bz2 hercules-6509af19cb4dbba9d8af7489301e58dc8c6ca9f7.tar.xz hercules-6509af19cb4dbba9d8af7489301e58dc8c6ca9f7.zip |
Follow-up to HPM.
* Fixed small warning
* Added support for Visual Studio 2010.
Signed-off-by: Matheus Macabu <mkbu95@gmail.com>
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/console.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/console.c b/src/common/console.c index db914db98..c228ab790 100644 --- a/src/common/console.c +++ b/src/common/console.c @@ -377,7 +377,7 @@ void console_init (void) { } void console_final(void) { #ifdef CONSOLE_INPUT - int i; + unsigned int i; console->parse_final(); for( i = 0; i < console->cmd_count; i++ ) { if( console->cmds[i]->next_count ) |