From: Florian Ragwitz Date: Wed, 25 Mar 2009 00:31:54 +0000 (+0100) Subject: Fix a compiler warning. X-Git-Tag: 0.09~8 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ad2debb217cb9247479eaf4da4e5f454e225a276;p=gitmo%2FClass-C3-XS.git Fix a compiler warning. --- diff --git a/XS.xs b/XS.xs index cc4a23d..615ae10 100644 --- a/XS.xs +++ b/XS.xs @@ -577,7 +577,7 @@ XS(XS_Class_C3_XS_calc_mdt) } hv_iterinit(mro_stash); - while(he = hv_iternext(mro_stash)) { + while((he = hv_iternext(mro_stash))) { CV* code; SV* mskey; SV* msval;