[Freeswitch-svn] [commit] r8848 - freeswitch/trunk/src/mod/asr_tts/mod_cepstral

Freeswitch SVN mikej at freeswitch.org
Wed Jun 25 22:45:16 EDT 2008


Author: mikej
Date: Wed Jun 25 22:45:16 2008
New Revision: 8848

Modified:
   freeswitch/trunk/src/mod/asr_tts/mod_cepstral/mod_cepstral.c

Log:
const tweak

Modified: freeswitch/trunk/src/mod/asr_tts/mod_cepstral/mod_cepstral.c
==============================================================================
--- freeswitch/trunk/src/mod/asr_tts/mod_cepstral/mod_cepstral.c	(original)
+++ freeswitch/trunk/src/mod/asr_tts/mod_cepstral/mod_cepstral.c	Wed Jun 25 22:45:16 2008
@@ -333,14 +333,14 @@
 	assert(cepstral != NULL);
 
 	if (!strcasecmp(param, "voice")) {
-		char *voice_name = val;
+		const char *voice_name = val;
 		if (!strcasecmp(voice_name, "next")) {
 			if ((cepstral->voice = swift_port_find_next_voice(cepstral->port))) {
 				if (SWIFT_FAILED(swift_port_set_voice(cepstral->port, cepstral->voice))) {
 					cepstral->done = cepstral->done_gen = 1;
 					return;
 				}
-				voice_name = (char *) swift_voice_get_attribute(cepstral->voice, "name");
+				voice_name = swift_voice_get_attribute(cepstral->voice, "name");
 			} else {
 				voice_name = NULL;
 			}
@@ -366,7 +366,7 @@
 				return;
 			}
 
-			voice_name = (char *) swift_voice_get_attribute(cepstral->voice, "name");
+			voice_name = swift_voice_get_attribute(cepstral->voice, "name");
 		}
 
 		if (voice_name) {



More information about the Freeswitch-svn mailing list