diff options
author | Robin Barker <RMBarker@cpan.org> | 2006-10-11 18:02:01 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-10-12 14:19:33 +0000 |
commit | acff02b8767928cdbc04968102e70f115f9458f0 (patch) | |
tree | 822bb421ace2657bbb71572483d80b811770b399 /regcomp.c | |
parent | ae5c2706608a05b8309995b7b86cba4433e5d602 (diff) | |
download | perl-acff02b8767928cdbc04968102e70f115f9458f0.tar.gz |
fix format errors; was RE: g++ compile and make test 100%
From: "Robin Barker" <Robin.Barker@npl.co.uk>
Message-ID: <2C2E01334A940D4792B3E115F95B7226120A69@exchsvr1.npl.ad.local>
p4raw-id: //depot/perl@29001
Diffstat (limited to 'regcomp.c')
-rw-r--r-- | regcomp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4601,7 +4601,7 @@ S_reg(pTHX_ RExC_state_t *pRExC_state, I32 paren, I32 *flagp,U32 depth) ARG2L_SET( ret, 0); RExC_emit++; DEBUG_OPTIMISE_MORE_r(PerlIO_printf(Perl_debug_log, - "Recurse #%"UVuf" to %"IVdf"\n", ARG(ret), ARG2L(ret))); + "Recurse #%"UVuf" to %"IVdf"\n", (UV)ARG(ret), (IV)ARG2L(ret))); } else { RExC_size++; } @@ -4883,7 +4883,7 @@ S_reg(pTHX_ RExC_state_t *pRExC_state, I32 paren, I32 *flagp,U32 depth) ret = reganode(pRExC_state, OPEN, parno); if (!SIZE_ONLY && RExC_seen & REG_SEEN_RECURSE) { DEBUG_OPTIMISE_MORE_r(PerlIO_printf(Perl_debug_log, - "Setting paren #%"IVdf" to %d\n", parno, REG_NODE_NUM(ret))); + "Setting paren #%"IVdf" to %d\n", (IV)parno, REG_NODE_NUM(ret))); RExC_parens[parno-1]= ret; } |