diff options
author | Steve Hay <SteveHay@planit.com> | 2007-01-05 09:45:08 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2007-01-05 09:45:08 +0000 |
commit | 85c508c327bae6947de518a0ae05de3f08986372 (patch) | |
tree | 1ec76315d5ad02feade8d6efe6b06b5f8877c09f /util.c | |
parent | a951d81d1408c83245c2beba7e057583534f618e (diff) | |
download | perl-85c508c327bae6947de518a0ae05de3f08986372.tar.gz |
Silence various VC6 warnings
p4raw-id: //depot/perl@29692
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -769,7 +769,7 @@ Perl_screaminstr(pTHX_ SV *bigstr, SV *littlestr, I32 start_shift, I32 end_shift : (((pos = *old_posp), pos += PL_screamnext[pos]) == 0)) { cant_find: if ( BmRARE(littlestr) == '\n' - && BmPREVIOUS(littlestr) == (U8)SvCUR(littlestr) - 1) { + && BmPREVIOUS(littlestr) == SvCUR(littlestr) - 1) { little = (const unsigned char *)(SvPVX_const(littlestr)); littleend = little + SvCUR(littlestr); first = *little++; |