From: Florian Ragwitz Date: Wed, 4 Feb 2009 22:09:26 +0000 (+0100) Subject: Get rid of a warning produced by -Wparentheses. X-Git-Tag: v0.07~8 X-Git-Url: http://git.vpit.fr/?a=commitdiff_plain;h=47674ecc2f95e381064eefa5124221498151b02d;p=perl%2Fmodules%2FScope-Upper.git Get rid of a warning produced by -Wparentheses. --- diff --git a/Upper.xs b/Upper.xs index 367658c..c93f44d 100644 --- a/Upper.xs +++ b/Upper.xs @@ -295,11 +295,12 @@ STATIC void su_call(pTHX_ void *ud_) { * when the new sub scope will be created in call_sv. */ #if SU_HAS_PERL(5, 10, 0) - if (dieing) + if (dieing) { if (cxstack_ix < cxstack_max) ++cxstack_ix; else cxstack_ix = Perl_cxinc(aTHX); + } #endif call_sv(ud->cb, G_VOID);