mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-14 00:00:44 +00:00
[Core] Fix regression in switch_utils after implementing unit-tests parallel.
This commit is contained in:
parent
fb14a03924
commit
c39a2b11ce
@ -1452,7 +1452,7 @@ SWITCH_DECLARE(void) switch_getcputime(switch_cputime *t);
|
|||||||
|
|
||||||
SWITCH_DECLARE(char *)switch_html_strip(const char *str);
|
SWITCH_DECLARE(char *)switch_html_strip(const char *str);
|
||||||
|
|
||||||
SWITCH_DECLARE(unsigned long) switch_getpid();
|
SWITCH_DECLARE(unsigned long) switch_getpid(void);
|
||||||
|
|
||||||
SWITCH_END_EXTERN_C
|
SWITCH_END_EXTERN_C
|
||||||
#endif
|
#endif
|
||||||
|
@ -4534,7 +4534,7 @@ SWITCH_DECLARE(char *)switch_html_strip(const char *str)
|
|||||||
return text;
|
return text;
|
||||||
}
|
}
|
||||||
|
|
||||||
SWITCH_DECLARE(unsigned long) switch_getpid()
|
SWITCH_DECLARE(unsigned long) switch_getpid(void)
|
||||||
{
|
{
|
||||||
#ifndef WIN32
|
#ifndef WIN32
|
||||||
pid_t pid = getpid();
|
pid_t pid = getpid();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user