In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/62b5d8c012dd6f2dd295eda952734ce7fc7b608d?hp=2c4c45fc46d5cee014cf2ffaf632919f9a294a6a>

- Log -----------------------------------------------------------------
commit 62b5d8c012dd6f2dd295eda952734ce7fc7b608d
Author: Anton Nikishaev <[email protected]>
Date:   Wed Feb 27 12:01:07 2013 +0400

    perldtrace.pod: fix example code
-----------------------------------------------------------------------

Summary of changes:
 pod/perldtrace.pod |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pod/perldtrace.pod b/pod/perldtrace.pod
index 022a237..0aeb268 100644
--- a/pod/perldtrace.pod
+++ b/pod/perldtrace.pod
@@ -74,7 +74,7 @@ I<caller> from a DTrace action.
 
     :*perl*::sub-entry {
         printf("%s::%s entered at %s line %d\n",
-               copyinstr(arg3), copyinstr(arg0), copyinstr(arg1), arg0);
+               copyinstr(arg3), copyinstr(arg0), copyinstr(arg1), arg2);
     }
 
 =item sub-return(SUBNAME, FILE, LINE, PACKAGE)
@@ -86,7 +86,7 @@ from a DTrace action.
 
     :*perl*::sub-return {
         printf("%s::%s returned at %s line %d\n",
-               copyinstr(arg3), copyinstr(arg0), copyinstr(arg1), arg0);
+               copyinstr(arg3), copyinstr(arg0), copyinstr(arg1), arg2);
     }
 
 =item phase-change(NEWPHASE, OLDPHASE)

--
Perl5 Master Repository

Reply via email to