diff options
Diffstat (limited to 'libc/misc/regex/regexec.c')
-rw-r--r-- | libc/misc/regex/regexec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/misc/regex/regexec.c b/libc/misc/regex/regexec.c index c13c64ef4..106231da7 100644 --- a/libc/misc/regex/regexec.c +++ b/libc/misc/regex/regexec.c @@ -564,7 +564,7 @@ re_search_internal (const regex_t *preg, const char *string, int length, re_match_context_t mctx; char *fastmap = (preg->fastmap != NULL && preg->fastmap_accurate && range && !preg->can_be_null) ? preg->fastmap : NULL; - RE_TRANSLATE_TYPE t = preg->translate; + __RE_TRANSLATE_TYPE t = preg->translate; memset (&mctx, '\0', sizeof (re_match_context_t)); mctx.dfa = dfa; |