From 9e29e5ff005da001be364f21377fa2a6364952d5 Mon Sep 17 00:00:00 2001 From: Yitzchak Scott-Thoennes Date: Mon, 6 Nov 2000 07:19:05 -0800 Subject: [PATCH] Varargs don't always work too well if one puts an unsigned char on the stack and pop an unsigned quad off the stack. Subject: Re: [ID 20001103.002] Not OK: perl v5.7.0 +DEVEL7523 on os2-64int-ld-2.30 (UNINSTALLED) Message-ID: p4raw-id: //depot/perl@7584 --- utf8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utf8.c b/utf8.c index 5237ac4..8ce0d21 100644 --- a/utf8.c +++ b/utf8.c @@ -215,7 +215,7 @@ Perl_utf8_to_uv(pTHX_ U8* s, STRLEN curlen, STRLEN* retlen, U32 flags) if (dowarn) Perl_warner(aTHX_ WARN_UTF8, "Malformed UTF-8 character (unexpected non-continuation byte 0x%02"UVxf" after byte 0x%02"UVxf")", - s[1], uv); + (UV)s[1], uv); goto malformed; } -- 2.7.4