From: Giovanni Maruzzelli Date: Wed, 8 Apr 2009 22:08:31 +0000 (+0000) Subject: skypiax: fixed assignment before declaration on Windows VC++: thx to Carlos Talbot X-Git-Tag: v1.0.4~1230 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f54561be0fb059dd6bdc8b4aca3e6cc4bbed14ad;p=thirdparty%2Ffreeswitch.git skypiax: fixed assignment before declaration on Windows VC++: thx to Carlos Talbot git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12956 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/endpoints/mod_skypiax/mod_skypiax.c b/src/mod/endpoints/mod_skypiax/mod_skypiax.c index 9a39f66540..c183e67c97 100644 --- a/src/mod/endpoints/mod_skypiax/mod_skypiax.c +++ b/src/mod/endpoints/mod_skypiax/mod_skypiax.c @@ -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;