summaryrefslogtreecommitdiff
path: root/utf8.c
diff options
context:
space:
mode:
authorRobin Barker <RMBarker@cpan.org>2005-01-19 18:30:31 +0000
committerH.Merijn Brand <h.m.brand@xs4all.nl>2005-01-19 18:32:41 +0000
commit014ead4bccac5462b3a10654493980250e84b1d4 (patch)
treefc07a2bc355f8c8afe997e97ca5e875d198e3dbf /utf8.c
parent3e0a3558675c46274592389adb574bfc2a161d7a (diff)
downloadperl-014ead4bccac5462b3a10654493980250e84b1d4.tar.gz
Further follow-up to 23767
Message-ID: <533D273D4014D411AB1D00062938C4D90849C57D@hotel.npl.co.uk> p4raw-id: //depot/perl@23824
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 0eafd76127..5c6f2715f3 100644
--- a/utf8.c
+++ b/utf8.c
@@ -875,7 +875,7 @@ Perl_utf16_to_utf8(pTHX_ U8* p, U8* d, I32 bytelen, I32 *newlen)
}
if (bytelen & 1)
- Perl_croak(aTHX_ "panic: utf16_to_utf8: odd bytelen %d", bytelen);
+ Perl_croak(aTHX_ "panic: utf16_to_utf8: odd bytelen %"UVf, (UV)bytelen);
pend = p + bytelen;