From: Steve Hay Date: Tue, 28 Feb 2006 12:40:06 +0000 (+0000) Subject: Silence a VC++ warning with DEBUGGING builds X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ea4714379ce5a42a9cc53a3224832e503c01446e;p=p5sagit%2Fp5-mst-13.2.git Silence a VC++ warning with DEBUGGING builds (signed/unsigned mismatch) p4raw-id: //depot/perl@27351 --- diff --git a/sv.c b/sv.c index 44cb50a..a7aa81c 100644 --- a/sv.c +++ b/sv.c @@ -1081,7 +1081,7 @@ S_more_bodies (pTHX_ svtype sv_type) #ifdef DEBUGGING if (!done_sanity_check) { - int i = SVt_LAST; + unsigned int i = SVt_LAST; done_sanity_check = TRUE;