summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2010-12-28 08:56:36 +0000
committerNicholas Clark <nick@ccl4.org>2010-12-28 10:03:38 +0000
commit65820a288a7a8e6320b960e1ffcb1dc9577b9650 (patch)
treea54299536df38c3d0ae89cf1a257cc09e6efb923 /proto.h
parenta53904572d7a4d49d78b8fb0a3c739b451faad7e (diff)
downloadperl-65820a288a7a8e6320b960e1ffcb1dc9577b9650.tar.gz
The io argument to report_evil_fh() is always GvIO(gv), so need not be passed.
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index fdf480affb..08ef68110d 100644
--- a/proto.h
+++ b/proto.h
@@ -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, const IO *io, I32 op);
+PERL_CALLCONV void Perl_report_evil_fh(pTHX_ const GV *gv, I32 op);
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)