summaryrefslogtreecommitdiff
path: root/pp_hot.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-03-04 20:13:27 -0700
committerKarl Williamson <khw@cpan.org>2020-03-18 17:38:19 -0600
commit3f5ee3fa4a562ad9669511d3628e3b133a048a1c (patch)
tree68994480f3a4dfdd2a854afa929d0f002412c3ef /pp_hot.c
parent7772648bef28ffe36213fdd4346343773d5344e9 (diff)
downloadperl-3f5ee3fa4a562ad9669511d3628e3b133a048a1c.tar.gz
pp_match: Use 'z' length modifier to format sizes
This makes things easier to read.
Diffstat (limited to 'pp_hot.c')
-rw-r--r--pp_hot.c6
1 files changed, 3 insertions, 3 deletions
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;
}