diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-12-28 09:09:44 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-12-28 10:03:48 +0000 |
commit | 831e4cc39fb21ae91f3e1e38353c1f0efa8f6761 (patch) | |
tree | 487258c1a5325df67a5fe1536ae4583b943ca0f6 /proto.h | |
parent | 65820a288a7a8e6320b960e1ffcb1dc9577b9650 (diff) | |
download | perl-831e4cc39fb21ae91f3e1e38353c1f0efa8f6761.tar.gz |
Argument op to report_evil_fh() is always PL_op->op_type, so need not be passed
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3479,7 +3479,7 @@ PERL_CALLCONV void Perl_repeatcpy(char* to, const char* from, I32 len, I32 count #define PERL_ARGS_ASSERT_REPEATCPY \ assert(to); assert(from) -PERL_CALLCONV void Perl_report_evil_fh(pTHX_ const GV *gv, I32 op); +PERL_CALLCONV void Perl_report_evil_fh(pTHX_ const GV *gv); PERL_CALLCONV void Perl_report_uninit(pTHX_ const SV *uninit_sv); PERL_CALLCONV void Perl_report_wrongway_fh(pTHX_ const GV *gv, const char have); PERL_CALLCONV void Perl_require_pv(pTHX_ const char* pv) |