Skip to content

Commit 1af7228

Browse files
committed
FS-6061 --resolve
1 parent 8f73c4e commit 1af7228

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/switch_cpp.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1306,7 +1306,7 @@ SWITCH_DECLARE(bool) email(char *to, char *from, char *headers, char *body, char
13061306
return false;
13071307
}
13081308

1309-
SWITCH_DECLARE(void) msleep(unsigned ms)
1309+
SWITCH_DECLARE(void) switch_msleep(unsigned ms)
13101310
{
13111311
switch_sleep(ms * 1000);
13121312
return;

swig_common.i

+5
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
%typemap(newfree) char * "free($1);";
22
%newobject getGlobalVariable;
3+
%rename(msleep) switch_msleep;
4+
5+
6+
7+

0 commit comments

Comments
 (0)