From 9f4db4e2c3c04e899c84717925761babb57a63b2 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 2 Jul 2012 11:58:47 -0500 Subject: [PATCH] fix 64-bit compiler warning --- pp_ctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pp_ctl.c b/pp_ctl.c index 75204b1..54f17ae 100644 --- a/pp_ctl.c +++ b/pp_ctl.c @@ -3279,7 +3279,7 @@ Perl_find_runcv_where(pTHX_ U8 cond, void *arg, U32 *db_seqp) if (CvROOT(cv) != (OP *)arg) continue; return cv; case FIND_RUNCV_level_eq: - if (level++ != (int)arg) continue; + if (level++ != (IV)arg) continue; /* GERONIMO! */ default: return cv; -- 2.7.4