X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=run.c;h=be532046c6a73f614ce29d4f169f3fd4d8b3363d;hb=52a043e6cc1df667f590107cf208184857a066bd;hp=9d3189dc9053d51c59023e13a12e9cd1af57a034;hpb=cea2e8a9dd23747fd2b66edc86c58c64e9970321;p=p5sagit%2Fp5-mst-13.2.git diff --git a/run.c b/run.c index 9d3189d..be53204 100644 --- a/run.c +++ b/run.c @@ -28,7 +28,7 @@ Perl_runops_standard(pTHX) { dTHR; - while ( PL_op = (CALLOP->op_ppaddr)(ARGS) ) ; + while ( PL_op = (CALLOP->op_ppaddr)(aTHX) ) ; TAINT_NOT; return 0; @@ -40,7 +40,8 @@ Perl_runops_debug(pTHX) #ifdef DEBUGGING dTHR; if (!PL_op) { - Perl_warn(aTHX_ "NULL OP IN RUN"); + if (ckWARN_d(WARN_DEBUGGING)) + Perl_warner(aTHX_ WARN_DEBUGGING, "NULL OP IN RUN"); return 0; } @@ -53,7 +54,7 @@ Perl_runops_debug(pTHX) DEBUG_t(debop(PL_op)); DEBUG_P(debprof(PL_op)); } - } while ( PL_op = (CALLOP->op_ppaddr)(ARGS) ); + } while ( PL_op = (CALLOP->op_ppaddr)(aTHX) ); TAINT_NOT; return 0;