summaryrefslogtreecommitdiff
path: root/utf8.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-09-23 03:30:07 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-09-23 03:30:07 +0000
commit2104c8d9ac25c91585a67ba0b4389e0fdba828e5 (patch)
treeddc398606a5fdf5fab188b2a992107da5cb77d2b /utf8.c
parent891521e23d0fd29798c6e514fa885783f0b6a6ad (diff)
downloadperl-2104c8d9ac25c91585a67ba0b4389e0fdba828e5.tar.gz
fix mismatched UV/U32 types for to_utf8_*()
p4raw-id: //depot/perl@1805
Diffstat (limited to 'utf8.c')
-rw-r--r--utf8.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/utf8.c b/utf8.c
index 66135bb6e6..a3fd9ad700 100644
--- a/utf8.c
+++ b/utf8.c
@@ -479,7 +479,7 @@ is_utf8_mark(U8 *p)
return swash_fetch(PL_utf8_mark, p);
}
-U32
+UV
to_utf8_upper(U8 *p)
{
UV uv;
@@ -490,7 +490,7 @@ to_utf8_upper(U8 *p)
return uv ? uv : utf8_to_uv(p,0);
}
-U32
+UV
to_utf8_title(U8 *p)
{
UV uv;
@@ -501,7 +501,7 @@ to_utf8_title(U8 *p)
return uv ? uv : utf8_to_uv(p,0);
}
-U32
+UV
to_utf8_lower(U8 *p)
{
UV uv;