]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
const
authorAnthony Minessale <anthony.minessale@gmail.com>
Wed, 20 Dec 2006 21:40:26 +0000 (21:40 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Wed, 20 Dec 2006 21:40:26 +0000 (21:40 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3767 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/switch_ivr.c

index 879f31a096b78491dadcdf6a6ff363b30e374dba..dee8b5994e913c59023d1b8b1a6de52a8978c769 100644 (file)
@@ -4412,9 +4412,10 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_phrase_macro(switch_core_session_t *s
                                                         uint32_t buflen)
 {
        switch_xml_t cfg, xml = NULL, language, macros, macro, input, action;
-    char *lname = NULL, *mname = NULL, hint_data[1024] = "", enc_hint[1024] = "";
+    const char *lname = NULL, *mname = NULL;
+    char hint_data[1024] = "", enc_hint[1024] = "";
     switch_status_t status = SWITCH_STATUS_GENERR;
-    char *old_sound_prefix, *sound_path = NULL, *tts_engine = NULL, *tts_voice = NULL;
+    const char *old_sound_prefix, *sound_path = NULL, *tts_engine = NULL, *tts_voice = NULL;
     switch_channel_t *channel;
 
     channel = switch_core_session_get_channel(session);