diff options
author | Steve Hay <SteveHay@planit.com> | 2005-07-20 13:08:54 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-07-20 13:08:54 +0000 |
commit | 624f69f59cd52940ed1e8dbd592bbf1daf38f8e2 (patch) | |
tree | 16dde2efb4bb1947bccd61106de31691934adf9d /pad.c | |
parent | 8aad04aa6a2ab20a526b53089f8919d46434ca7e (diff) | |
download | perl-624f69f59cd52940ed1e8dbd592bbf1daf38f8e2.tar.gz |
Silence Win32 compiler warning (signed/unsigned mismatch)
p4raw-id: //depot/perl@25201
Diffstat (limited to 'pad.c')
-rw-r--r-- | pad.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -541,7 +541,7 @@ Perl_pad_check_dup(pTHX_ const char *name, bool is_our, const HV *ourstash) { Perl_warner(aTHX_ packWARN(WARN_MISC), "\"our\" variable %s redeclared", name); - if (off <= PL_comppad_name_floor) + if ((I32)off <= PL_comppad_name_floor) Perl_warner(aTHX_ packWARN(WARN_MISC), "\t(Did you mean \"local\" instead of \"our\"?)\n"); break; |