This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f9d9e96
)
universal.c:croak_xs_usage: Don’t fetch context twice
author
Father Chrysostomos
<sprout@cpan.org>
Mon, 15 Sep 2014 13:22:30 +0000
(06:22 -0700)
committer
Father Chrysostomos
<sprout@cpan.org>
Mon, 15 Sep 2014 13:22:30 +0000
(06:22 -0700)
universal.c
patch
|
blob
|
blame
|
history
diff --git
a/universal.c
b/universal.c
index
825dff5
..
906f74c
100644
(file)
--- a/
universal.c
+++ b/
universal.c
@@
-326,7
+326,7
@@
Perl_croak_xs_usage(const CV *const cv, const char *const params)
/* Pants. I don't think that it should be possible to get here. */
/* diag_listed_as: SKIPME */
- Perl_croak
_nocontext(
"Usage: CODE(0x%"UVxf")(%s)", PTR2UV(cv), params);
+ Perl_croak
(aTHX_
"Usage: CODE(0x%"UVxf")(%s)", PTR2UV(cv), params);
}
}