diff options
author | Karl Williamson <khw@khw-desktop.(none)> | 2010-01-14 21:21:37 -0700 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2010-05-29 10:40:18 -0500 |
commit | 1c8f8eb1d500716bc7368dab00869ae3be841e0c (patch) | |
tree | 5e335abf154d1cc7d4fedd5502eb076750cc70ad /regexec.c | |
parent | c2dc4c7d5e51c6211637044820c7a560da7e6268 (diff) | |
download | perl-1c8f8eb1d500716bc7368dab00869ae3be841e0c.tar.gz |
Clarify that count is bytes not unicode characters
Diffstat (limited to 'regexec.c')
-rw-r--r-- | regexec.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2200,7 +2200,7 @@ Perl_regexec_flags(pTHX_ REGEXP * const rx, char *stringarg, register char *stre RE_PV_QUOTED_DECL(quoted,do_utf8,PERL_DEBUG_PAD_ZERO(1), s,strend-s,60); PerlIO_printf(Perl_debug_log, - "Matching stclass %.*s against %s (%d chars)\n", + "Matching stclass %.*s against %s (%d bytes)\n", (int)SvCUR(prop), SvPVX_const(prop), quoted, (int)(strend - s)); } |