diff options
author | Robin Barker <RMBarker@cpan.org> | 2003-06-05 18:16:58 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-06-05 18:37:02 +0000 |
commit | 84c133a0c99ec2d2efc517f14b45051d3bfe4074 (patch) | |
tree | 9cf4cd27603e17927d3d256de12030ec959fdde3 /op.c | |
parent | 75ccb5d377ec0ee8e7df44481cfb19db42df4931 (diff) | |
download | perl-84c133a0c99ec2d2efc517f14b45051d3bfe4074.tar.gz |
RE: maint @ 19683
Message-ID: <533D273D4014D411AB1D00062938C4D904046564@hotel.npl.co.uk>
(skipped the MIME::Base64 part, leaving that to Gisle)
p4raw-id: //depot/perl@19694
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -2292,13 +2292,13 @@ Perl_pmtrans(pTHX_ OP *o, OP *expr, OP *repl) U8* tend = t + tlen; U8* rend = r + rlen; STRLEN ulen; - U32 tfirst = 1; - U32 tlast = 0; - I32 tdiff; - U32 rfirst = 1; - U32 rlast = 0; - I32 rdiff; - I32 diff; + UV tfirst = 1; + UV tlast = 0; + IV tdiff; + UV rfirst = 1; + UV rlast = 0; + IV rdiff; + IV diff; I32 none = 0; U32 max = 0; I32 bits; |