Change 33290 by [EMAIL PROTECTED] on 2008/02/12 12:52:14
Correct the paramter to Perl_op_xmldump(). The one that got away from
change 33289.
Affected files ...
... //depot/perl/embed.fnc#583 edit
... //depot/perl/proto.h#917 edit
Differences ...
==== //depot/perl/embed.fnc#583 (text) ====
Index: perl/embed.fnc
--- perl/embed.fnc#582~33289~ 2008-02-12 04:16:23.000000000 -0800
+++ perl/embed.fnc 2008-02-12 04:52:14.000000000 -0800
@@ -1913,7 +1913,7 @@
|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
==== //depot/perl/proto.h#917 (text+w) ====
Index: perl/proto.h
--- perl/proto.h#916~33289~ 2008-02-12 04:16:23.000000000 -0800
+++ perl/proto.h 2008-02-12 04:52:14.000000000 -0800
@@ -4614,7 +4614,7 @@
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);
End of Patch.