[Freeswitch-svn] [commit] r12956 - freeswitch/trunk/src/mod/endpoints/mod_skypiax

FreeSWITCH SVN gmaruzz at freeswitch.org
Wed Apr 8 15:08:31 PDT 2009


Author: gmaruzz
Date: Wed Apr  8 17:08:31 2009
New Revision: 12956

Log:
skypiax: fixed assignment before declaration on Windows VC++: thx to Carlos Talbot

Modified:
   freeswitch/trunk/src/mod/endpoints/mod_skypiax/mod_skypiax.c

Modified: freeswitch/trunk/src/mod/endpoints/mod_skypiax/mod_skypiax.c
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_skypiax/mod_skypiax.c	(original)
+++ freeswitch/trunk/src/mod/endpoints/mod_skypiax/mod_skypiax.c	Wed Apr  8 17:08:31 2009
@@ -1025,9 +1025,9 @@
 
 SWITCH_MODULE_LOAD_FUNCTION(mod_skypiax_load)
 {
-  skypiax_module_pool = pool;
   switch_api_interface_t *commands_api_interface;
 
+  skypiax_module_pool = pool;
   memset(&globals, '\0', sizeof(globals));
 
   running = 1;



More information about the Freeswitch-svn mailing list