summaryrefslogtreecommitdiff
path: root/mro.c
diff options
context:
space:
mode:
authorJerry D. Hedden <jdhedden@cpan.org>2010-12-01 09:51:43 -0500
committerFather Chrysostomos <sprout@cpan.org>2010-12-01 08:20:04 -0800
commit4c916935c1a92a1e788b3be03e59191658b33154 (patch)
treeb4563305f8f1049ded7372eeafa67b249542d51e /mro.c
parentc6008483e405015834571507162824920238e97b (diff)
downloadperl-4c916935c1a92a1e788b3be03e59191658b33154.tar.gz
Fix uninit compiler warning in mro.c
Diffstat (limited to 'mro.c')
-rw-r--r--mro.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mro.c b/mro.c
index 170741caf1..d4dc681887 100644
--- a/mro.c
+++ b/mro.c
@@ -830,7 +830,7 @@ S_mro_gather_and_rename(pTHX_ HV * const stashes, HV * const seen_stashes,
register XPVHV* xhv;
register HE *entry;
I32 riter = -1;
- I32 items;
+ I32 items = 0;
const bool stash_had_name = stash && HvENAME(stash);
bool fetched_isarev = FALSE;
HV *seen = NULL;