summaryrefslogtreecommitdiff
path: root/run.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-06-10 08:38:00 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-06-10 08:38:00 +0000
commit66918de8dd631444b797319b2251d78ebc0b12ef (patch)
treeb5909a0155b4ffe4f27c2c09bcbd36e3c57e4c5e /run.c
parent4f63d0249796d635a70b03245ad972152a3eba76 (diff)
downloadperl-66918de8dd631444b797319b2251d78ebc0b12ef.tar.gz
fix small nits
p4raw-id: //depot/perl@3526
Diffstat (limited to 'run.c')
-rw-r--r--run.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/run.c b/run.c
index 9d3189dc90..0d9f7cf0f7 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;
@@ -53,7 +53,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;