compile fixes

This commit is contained in:
Magnus Auvinen 2008-01-16 22:15:56 +00:00
parent 75c8b2e9a5
commit 037569c4e5
2 changed files with 4 additions and 3 deletions

View file

@ -240,7 +240,7 @@ static int console_validate(COMMAND *command, struct lexer_result *result)
return -1; return -1;
break; break;
default: default:
// unknown char, so just continue... /* unknown char, so just continue... */
c++; c++;
continue; continue;
} }
@ -275,9 +275,10 @@ void console_execute(const char *str)
else if (result.num_tokens > 0) else if (result.num_tokens > 0)
{ {
const char *name; const char *name;
COMMAND *command;
extract_result_string(&result, 0, &name); extract_result_string(&result, 0, &name);
COMMAND *command = console_find_command(name); command = console_find_command(name);
if (command) if (command)
{ {

View file

@ -17,7 +17,7 @@ static unsigned int console_input_len = 0;
static char console_input[256] = {0}; static char console_input[256] = {0};
static int active = 0; static int active = 0;
static char backlog[256][256] = {0}; static char backlog[256][256] = {{0}};
static int backlog_len; static int backlog_len;
static void client_console_print(const char *str) static void client_console_print(const char *str)