summaryrefslogtreecommitdiff
path: root/ext/pcre/pcrelib/pcre_valid_utf8.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pcre/pcrelib/pcre_valid_utf8.c')
-rw-r--r--ext/pcre/pcrelib/pcre_valid_utf8.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pcre/pcrelib/pcre_valid_utf8.c b/ext/pcre/pcrelib/pcre_valid_utf8.c
index 62f47b952f..3c81dc9ecc 100644
--- a/ext/pcre/pcrelib/pcre_valid_utf8.c
+++ b/ext/pcre/pcrelib/pcre_valid_utf8.c
@@ -73,10 +73,10 @@ Returns: < 0 if the string is a valid UTF-8 string
*/
int
-_pcre_valid_utf8(const uschar *string, int length)
+_pcre_valid_utf8(USPTR string, int length)
{
#ifdef SUPPORT_UTF8
-register const uschar *p;
+register USPTR p;
if (length < 0)
{