From 97a2670af7f94d71ff64c2fa92dbd4338569f5bf Mon Sep 17 00:00:00 2001 From: Jeff Lenk Date: Wed, 20 Jan 2010 18:18:20 +0000 Subject: [PATCH] fix build parameter mismatch git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16418 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/switch_console.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/switch_console.c b/src/switch_console.c index 95617bb343..9f62bd2ff8 100644 --- a/src/switch_console.c +++ b/src/switch_console.c @@ -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 }