8446b7
From fa353c3d2833fc326233e0eb583753b4d7887a63 Mon Sep 17 00:00:00 2001
8446b7
From: Karl Williamson <khw@cpan.org>
8446b7
Date: Sun, 4 Oct 2020 11:07:19 -0600
8446b7
Subject: [PATCH] mro.xs: Fix compiler warning
8446b7
MIME-Version: 1.0
8446b7
Content-Type: text/plain; charset=UTF-8
8446b7
Content-Transfer-Encoding: 8bit
8446b7
8446b7
Fixes GH #18155
8446b7
8446b7
Signed-off-by: Petr Písař <ppisar@redhat.com>
8446b7
---
8446b7
 ext/mro/mro.xs | 2 +-
8446b7
 1 file changed, 1 insertion(+), 1 deletion(-)
8446b7
8446b7
diff --git a/ext/mro/mro.xs b/ext/mro/mro.xs
8446b7
index f21216af6e..8ce5844904 100644
8446b7
--- a/ext/mro/mro.xs
8446b7
+++ b/ext/mro/mro.xs
8446b7
@@ -253,7 +253,7 @@ S_mro_get_linear_isa_c3(pTHX_ HV* stash, U32 level)
8446b7
                hierarchy is not C3-incompatible */
8446b7
             if(!winner) {
8446b7
                 SV *errmsg;
8446b7
-                I32 i;
8446b7
+                Size_t i;
8446b7
 
8446b7
                 errmsg = newSVpvf(
8446b7
                            "Inconsistent hierarchy during C3 merge of class '%" HEKf "':\n\t"
8446b7
-- 
8446b7
2.25.4
8446b7