summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-02-12 12:52:14 +0000
committerNicholas Clark <nick@ccl4.org>2008-02-12 12:52:14 +0000
commit9f10164a6c9d93684fedbbc188fb9dfe004c22c4 (patch)
tree19f87c1d7ffe5354518d1a94ad6b7f8cd63240f0
parent4048f0105b8266fd1f895ab7bfaade86c079bdf5 (diff)
downloadperl-9f10164a6c9d93684fedbbc188fb9dfe004c22c4.tar.gz
Correct the paramter to Perl_op_xmldump(). The one that got away from
change 33289. p4raw-id: //depot/perl@33290
-rw-r--r--embed.fnc2
-rw-r--r--proto.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/embed.fnc b/embed.fnc
index 371a4559f6..a8b2819a9b 100644
--- a/embed.fnc
+++ b/embed.fnc
@@ -1913,7 +1913,7 @@ Mp |void |do_pmop_xmldump|I32 level|NN PerlIO *file \
|NULLOK const PMOP *pm
Mp |void |pmop_xmldump |NULLOK const PMOP* pm
Mp |void |do_op_xmldump |I32 level|NN PerlIO *file|NULLOK const OP *o
-Mp |void |op_xmldump |NN const OP* arg
+Mp |void |op_xmldump |NN const OP *o
Mp |TOKEN* |newTOKEN |I32 optype|YYSTYPE lval \
|NULLOK MADPROP* madprop
diff --git a/proto.h b/proto.h
index 10918f1a22..3108c0ebfe 100644
--- a/proto.h
+++ b/proto.h
@@ -4614,7 +4614,7 @@ PERL_CALLCONV void Perl_pmop_xmldump(pTHX_ const PMOP* pm);
PERL_CALLCONV void Perl_do_op_xmldump(pTHX_ I32 level, PerlIO *file, const OP *o)
__attribute__nonnull__(pTHX_2);
-PERL_CALLCONV void Perl_op_xmldump(pTHX_ const OP* arg)
+PERL_CALLCONV void Perl_op_xmldump(pTHX_ const OP *o)
__attribute__nonnull__(pTHX_1);