fix build parameter mismatch

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16418 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Jeff Lenk 2010-01-20 18:18:20 +00:00
parent 447b60edc0
commit 97a2670af7
1 changed files with 2 additions and 2 deletions

View File

@ -1465,7 +1465,7 @@ SWITCH_DECLARE(void) switch_console_loop(void)
cmd[1] = 0;
}
activity = 1;
running = switch_console_process(cmd, 0);
running = switch_console_process(cmd);
memset(cmd, 0, sizeof(cmd));
}
}
@ -1510,7 +1510,7 @@ SWITCH_DECLARE(void) switch_console_loop(void)
}
if (cmd[0]) {
running = switch_console_process(cmd, 0);
running = switch_console_process(cmd);
}
#endif
}