summaryrefslogtreecommitdiff
path: root/hv.c
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2006-07-27 16:25:41 +0000
committerSteve Hay <SteveHay@planit.com>2006-07-27 16:25:41 +0000
commit670f1322a800dc03404a696600a617f3804f797d (patch)
tree15060422f99dfd83326aa2cb90f977ec549063e9 /hv.c
parentce647182f445381be8b7e59ae7dcb564635409c6 (diff)
downloadperl-670f1322a800dc03404a696600a617f3804f797d.tar.gz
Clear up most of the VC6 compiler warnings in the following smoke:
http://www.nntp.perl.org/group/perl.daily-build.reports/39733 p4raw-id: //depot/perl@28626
Diffstat (limited to 'hv.c')
-rw-r--r--hv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hv.c b/hv.c
index c3a418875b..164351584a 100644
--- a/hv.c
+++ b/hv.c
@@ -2766,7 +2766,7 @@ Perl_refcounted_he_fetch(pTHX_ const struct refcounted_he *chain, SV *keysv,
#else
if (hash != HEK_HASH(chain->refcounted_he_hek))
continue;
- if (klen != HEK_LEN(chain->refcounted_he_hek))
+ if (klen != (STRLEN)HEK_LEN(chain->refcounted_he_hek))
continue;
if (memNE(HEK_KEY(chain->refcounted_he_hek),key,klen))
continue;