From: Dave Mitchell Date: Sun, 15 Apr 2007 23:33:13 +0000 (+0000) Subject: fix casting warning in pp_ord() X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5fc32deacd7d2eaba1f29c61703ea618e4b42998;p=p5sagit%2Fp5-mst-13.2.git fix casting warning in pp_ord() p4raw-id: //depot/perl@30965 --- diff --git a/pp.c b/pp.c index 3df0209..f532c59 100644 --- a/pp.c +++ b/pp.c @@ -3357,7 +3357,7 @@ PP(pp_ord) XPUSHu(DO_UTF8(argsv) ? utf8n_to_uvchr(s, UTF8_MAXBYTES, 0, UTF8_ALLOW_ANYUV) : - (*s & 0xff)); + (UV)(*s & 0xff)); RETURN; }