FS-6061 --resolve

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

View File

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

View File

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