summaryrefslogtreecommitdiff
path: root/utf8.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-02-19 04:03:46 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-02-19 04:03:46 +0000
commite9101d720b80106fbcfaf9d6e6c2a2d224de977f (patch)
tree6c44bd3cfa75f82ff5049321ff63b1e67139a8e6 /utf8.c
parente49298ea32513e37f1e773b8b86f6ee02bf9d1ac (diff)
downloadperl-e9101d720b80106fbcfaf9d6e6c2a2d224de977f.tar.gz
Oops.
p4raw-id: //depot/perl@14762
Diffstat (limited to 'utf8.c')
-rw-r--r--utf8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utf8.c b/utf8.c
index 6414e2b0a5..8f04b8931c 100644
--- a/utf8.c
+++ b/utf8.c
@@ -1360,7 +1360,7 @@ Perl_to_utf8_case(pTHX_ U8 *p, U8* ustrp, STRLEN *lenp, SV **swashp, char *norma
/* It was "normal" (a single character mapping). */
UV uv3 = UNI_TO_NATIVE(uv2);
- len = uvuni_to_utf8(ustrp, uv3) - ustrp;
+ len = uvchr_to_utf8(ustrp, uv3) - ustrp;
}
}