]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
skypiax: fixed assignment before declaration on Windows VC++: thx to Carlos Talbot
authorGiovanni Maruzzelli <gmaruzz@gmail.com>
Wed, 8 Apr 2009 22:08:31 +0000 (22:08 +0000)
committerGiovanni Maruzzelli <gmaruzz@gmail.com>
Wed, 8 Apr 2009 22:08:31 +0000 (22:08 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12956 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/endpoints/mod_skypiax/mod_skypiax.c

index 9a39f66540c868fad5fa3f5b4afea1e29fb13b77..c183e67c97a4b3641a80e2a834a55192cd1e0f07 100644 (file)
@@ -1025,9 +1025,9 @@ static switch_status_t load_config(void)
 
 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;