[Freeswitch-svn] [commit] r10543 - freeswitch/trunk/src

FreeSWITCH SVN mikej at freeswitch.org
Wed Nov 26 10:56:39 PST 2008


Author: mikej
Date: Wed Nov 26 13:56:37 2008
New Revision: 10543

Log:
tweak

Modified:
   freeswitch/trunk/src/switch_core.c
   freeswitch/trunk/src/switch_ivr.c

Modified: freeswitch/trunk/src/switch_core.c
==============================================================================
--- freeswitch/trunk/src/switch_core.c	(original)
+++ freeswitch/trunk/src/switch_core.c	Wed Nov 26 13:56:37 2008
@@ -973,7 +973,7 @@
 	runtime.dummy_cng_frame.data = runtime.dummy_data;
 	runtime.dummy_cng_frame.datalen = sizeof(runtime.dummy_data);
 	runtime.dummy_cng_frame.buflen = sizeof(runtime.dummy_data);
-	switch_set_flag(&runtime.dummy_cng_frame, SFF_CNG);
+	switch_set_flag((&runtime.dummy_cng_frame), SFF_CNG);
 
 	switch_set_flag((&runtime), SCF_NO_NEW_SESSIONS);
 	runtime.hard_log_level = SWITCH_LOG_DEBUG;

Modified: freeswitch/trunk/src/switch_ivr.c
==============================================================================
--- freeswitch/trunk/src/switch_ivr.c	(original)
+++ freeswitch/trunk/src/switch_ivr.c	Wed Nov 26 13:56:37 2008
@@ -50,7 +50,7 @@
 	cng_frame.data = data;
 	cng_frame.datalen = 2;
 	cng_frame.buflen = 2;
-	switch_set_flag(&cng_frame, SFF_CNG);
+	switch_set_flag((&cng_frame), SFF_CNG);
 
 	for (;;) {
 		now = switch_timestamp_now();



More information about the Freeswitch-svn mailing list