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