]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
warning: ISO C does not allow extra ; outside of a function
authorMichael Jerris <mike@jerris.com>
Wed, 14 Feb 2007 19:45:56 +0000 (19:45 +0000)
committerMichael Jerris <mike@jerris.com>
Wed, 14 Feb 2007 19:45:56 +0000 (19:45 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4269 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/endpoints/mod_portaudio/mod_portaudio.c
src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c

index 5a7093699c0fa096e53cfd65910792c34ddff71f..78a2c210373ff2645a7306b206a54cbb4233fa14 100644 (file)
@@ -127,12 +127,12 @@ static struct {
 #define PA_SLAVE 0
 
 
-SWITCH_DECLARE_GLOBAL_STRING_FUNC(set_global_dialplan, globals.dialplan);
-SWITCH_DECLARE_GLOBAL_STRING_FUNC(set_global_cid_name, globals.cid_name);
-SWITCH_DECLARE_GLOBAL_STRING_FUNC(set_global_cid_num, globals.cid_num);
-SWITCH_DECLARE_GLOBAL_STRING_FUNC(set_global_ring_file, globals.ring_file);
-SWITCH_DECLARE_GLOBAL_STRING_FUNC(set_global_hold_file, globals.hold_file);
-SWITCH_DECLARE_GLOBAL_STRING_FUNC(set_global_timer_name, globals.timer_name);
+SWITCH_DECLARE_GLOBAL_STRING_FUNC(set_global_dialplan, globals.dialplan)
+SWITCH_DECLARE_GLOBAL_STRING_FUNC(set_global_cid_name, globals.cid_name)
+SWITCH_DECLARE_GLOBAL_STRING_FUNC(set_global_cid_num, globals.cid_num)
+SWITCH_DECLARE_GLOBAL_STRING_FUNC(set_global_ring_file, globals.ring_file)
+SWITCH_DECLARE_GLOBAL_STRING_FUNC(set_global_hold_file, globals.hold_file)
+SWITCH_DECLARE_GLOBAL_STRING_FUNC(set_global_timer_name, globals.timer_name)
 
 #define is_master(t) switch_test_flag(t, TFLAG_MASTER)
 static void add_pvt(private_t *tech_pvt, int master);
index 770d5e6f50ffd7b7a0fc473865dd4644235d2d8a..417b481c6344f2e604a08aaf0e179df1891088b0 100644 (file)
@@ -65,9 +65,9 @@ static struct {
        char *pass;
 } globals;
 
-SWITCH_DECLARE_GLOBAL_STRING_FUNC(set_global_realm, globals.realm);
-SWITCH_DECLARE_GLOBAL_STRING_FUNC(set_global_user, globals.user);
-SWITCH_DECLARE_GLOBAL_STRING_FUNC(set_global_pass, globals.pass);
+SWITCH_DECLARE_GLOBAL_STRING_FUNC(set_global_realm, globals.realm)
+SWITCH_DECLARE_GLOBAL_STRING_FUNC(set_global_user, globals.user)
+SWITCH_DECLARE_GLOBAL_STRING_FUNC(set_global_pass, globals.pass)
 
 static switch_status_t do_config(void) 
 {