git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9658 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2008-09-26 16:40:16 +00:00
parent f08f7d401c
commit b2985ea2a2
2 changed files with 2 additions and 2 deletions

View File

@ -1654,7 +1654,7 @@ SWITCH_DECLARE(uint32_t) switch_core_default_dtmf_duration(uint32_t duration);
SWITCH_DECLARE(switch_status_t) switch_console_set_complete(const char *string);
SWITCH_DECLARE(switch_status_t) switch_console_set_alias(const char *string);
SWITCH_DECLARE(int) switch_system(char *cmd, switch_bool_t wait);
SWITCH_DECLARE(int) switch_system(const char *cmd, switch_bool_t wait);
///\}

View File

@ -1459,7 +1459,7 @@ static void *SWITCH_THREAD_FUNC system_thread(switch_thread_t *thread, void *obj
return NULL;
}
SWITCH_DECLARE(int) switch_system(char *cmd, switch_bool_t wait)
SWITCH_DECLARE(int) switch_system(const char *cmd, switch_bool_t wait)
{
switch_thread_t *thread;
switch_threadattr_t *thd_attr;