fix mismatched UV/U32 types for to_utf8_*()
Gurusamy Sarathy [Wed, 23 Sep 1998 03:30:07 +0000 (03:30 +0000)]
p4raw-id: //depot/perl@1805

utf8.c

diff --git a/utf8.c b/utf8.c
index 66135bb..a3fd9ad 100644 (file)
--- 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;