diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-06-10 08:38:00 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-06-10 08:38:00 +0000 |
commit | 66918de8dd631444b797319b2251d78ebc0b12ef (patch) | |
tree | b5909a0155b4ffe4f27c2c09bcbd36e3c57e4c5e /cc_runtime.h | |
parent | 4f63d0249796d635a70b03245ad972152a3eba76 (diff) | |
download | perl-66918de8dd631444b797319b2251d78ebc0b12ef.tar.gz |
fix small nits
p4raw-id: //depot/perl@3526
Diffstat (limited to 'cc_runtime.h')
-rw-r--r-- | cc_runtime.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cc_runtime.h b/cc_runtime.h index bb9b7dc5d9..bb0e07a58c 100644 --- a/cc_runtime.h +++ b/cc_runtime.h @@ -1,4 +1,4 @@ -#define DOOP(ppname) PUTBACK; PL_op = ppname(ARGS); SPAGAIN +#define DOOP(ppname) PUTBACK; PL_op = ppname(aTHX); SPAGAIN #define PP_LIST(g) do { \ dMARK; \ @@ -43,7 +43,7 @@ JMPENV_PUSH(ret); \ switch (ret) { \ case 0: \ - PL_op = ppaddr(ARGS); \ + PL_op = ppaddr(aTHX); \ PL_retstack[PL_retstack_ix - 1] = Nullop; \ if (PL_op != nxt) CALLRUNOPS(); \ JMPENV_POP; \ |