1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-03-03 01:13:30 +00:00

FS-11061: [core] fix build with newer pcre

This commit is contained in:
Mike Jerris 2018-03-29 11:17:44 -04:00
parent 987c9b9a2a
commit 43a9feb7f8

@ -37,7 +37,7 @@ SWITCH_DECLARE(switch_regex_t *) switch_regex_compile(const char *pattern,
int options, const char **errorptr, int *erroroffset, const unsigned char *tables) int options, const char **errorptr, int *erroroffset, const unsigned char *tables)
{ {
return pcre_compile(pattern, options, errorptr, erroroffset, tables); return (switch_regex_t *)pcre_compile(pattern, options, errorptr, erroroffset, tables);
} }