FS-6061 --resolve

This commit is contained in:
Anthony Minessale 2013-12-23 22:43:06 +05:00
parent 8f73c4ef44
commit 1af72288d1
2 changed files with 6 additions and 1 deletions

View File

@ -1306,7 +1306,7 @@ SWITCH_DECLARE(bool) email(char *to, char *from, char *headers, char *body, char
return false; return false;
} }
SWITCH_DECLARE(void) msleep(unsigned ms) SWITCH_DECLARE(void) switch_msleep(unsigned ms)
{ {
switch_sleep(ms * 1000); switch_sleep(ms * 1000);
return; return;

View File

@ -1,2 +1,7 @@
%typemap(newfree) char * "free($1);"; %typemap(newfree) char * "free($1);";
%newobject getGlobalVariable; %newobject getGlobalVariable;
%rename(msleep) switch_msleep;