X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=run.c;h=728b761ff033762829ad65b61b1f54c5e6c4a072;hb=e1a7722cd098782a8f17745f6ce67588a628fd64;hp=2491b93a25bc1b242e8332630d438f63e3ca2990;hpb=638eceb6656bf10acb1a6dc2a55880f5e1a6c8c4;p=p5sagit%2Fp5-mst-13.2.git diff --git a/run.c b/run.c index 2491b93..728b761 100644 --- a/run.c +++ b/run.c @@ -1,6 +1,6 @@ /* run.c * - * Copyright (c) 1991-1999, Larry Wall + * Copyright (c) 1991-2000, Larry Wall * * You may distribute under the terms of either the GNU General Public * License or the Artistic License, as specified in the README file. @@ -22,7 +22,7 @@ Perl_runops_standard(pTHX) { dTHR; - while ( PL_op = CALL_FPTR(PL_op->op_ppaddr)(aTHX) ) { + while ((PL_op = CALL_FPTR(PL_op->op_ppaddr)(aTHX))) { PERL_ASYNC_CHECK(); } @@ -53,7 +53,7 @@ Perl_runops_debug(pTHX) DEBUG_t(debop(PL_op)); DEBUG_P(debprof(PL_op)); } - } while ( PL_op = CALL_FPTR(PL_op->op_ppaddr)(aTHX) ); + } while ((PL_op = CALL_FPTR(PL_op->op_ppaddr)(aTHX))); TAINT_NOT; return 0;