From 3f5ee3fa4a562ad9669511d3628e3b133a048a1c Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Wed, 4 Mar 2020 20:13:27 -0700 Subject: pp_match: Use 'z' length modifier to format sizes This makes things easier to read. --- pp_hot.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pp_hot.c') diff --git a/pp_hot.c b/pp_hot.c index b95ac50d9d..1c4ff48e23 100644 --- a/pp_hot.c +++ b/pp_hot.c @@ -2966,9 +2966,9 @@ PP(pp_match) } if (RXp_MINLEN(prog) >= 0 && (STRLEN)RXp_MINLEN(prog) > len) { - DEBUG_r(PerlIO_printf(Perl_debug_log, "String shorter than min possible regex match (%" - UVuf " < %" IVdf ")\n", - (UV)len, (IV)RXp_MINLEN(prog))); + DEBUG_r(PerlIO_printf(Perl_debug_log, + "String shorter than min possible regex match (%zd < %zd)\n", + len, RXp_MINLEN(prog))); goto nope; } -- cgit v1.2.1