From: Karl Williamson Date: Mon, 18 Mar 2013 17:45:06 +0000 (-0600) Subject: pp.c: White-space only X-Git-Tag: upstream/5.20.0~2089^2~21 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d8f42585be563b859f319be6a4579343a0a6027a;p=platform%2Fupstream%2Fperl.git pp.c: White-space only Make a ternary operation more clear --- diff --git a/pp.c b/pp.c index 111012d..a913ec0 100644 --- a/pp.c +++ b/pp.c @@ -3319,9 +3319,9 @@ PP(pp_ord) argsv = tmpsv; } - XPUSHu(DO_UTF8(argsv) ? - utf8n_to_uvchr(s, UTF8_MAXBYTES, 0, UTF8_ALLOW_ANYUV) : - (UV)(*s & 0xff)); + XPUSHu(DO_UTF8(argsv) + ? utf8n_to_uvchr(s, UTF8_MAXBYTES, 0, UTF8_ALLOW_ANYUV) + : (UV)(*s & 0xff)); RETURN; }