diff options
author | Steve Hay <SteveHay@planit.com> | 2005-03-29 15:18:30 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-03-29 15:18:30 +0000 |
commit | fe2774edcceb29d7f31eb2b8407d2ab3df896594 (patch) | |
tree | 5f9e337ef31aaa5474897b7a94d6eefe9c923d79 /hv.c | |
parent | 1cb0ed9b77e4ba2e0bcbeb9a897574a0fe3f3e52 (diff) | |
download | perl-fe2774edcceb29d7f31eb2b8407d2ab3df896594.tar.gz |
Clean-up some warnings when compiling on Win32 with VC++
p4raw-id: //depot/perl@24096
Diffstat (limited to 'hv.c')
-rw-r--r-- | hv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1533,7 +1533,7 @@ Perl_hv_clear_placeholders(pTHX_ HV *hv) if (--items == 0) { /* Finished. */ - HvTOTALKEYS(hv) -= HvPLACEHOLDERS(hv); + HvTOTALKEYS(hv) -= (IV)HvPLACEHOLDERS(hv); if (HvKEYS(hv) == 0) HvHASKFLAGS_off(hv); HvPLACEHOLDERS(hv) = 0; |