diff options
author | Rafael Garcia-Suarez <rgs@consttype.org> | 2010-05-04 15:13:44 +0200 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2010-05-04 15:13:44 +0200 |
commit | 62705b21e05c097bbaecf3ca91f129dc5855ce77 (patch) | |
tree | 6465d5c3fa49a910df6eceb865405d21e5567c25 /proto.h | |
parent | 99782e35be86d92df5daa0659d4cb2351d4a36b9 (diff) | |
download | perl-62705b21e05c097bbaecf3ca91f129dc5855ce77.tar.gz |
Fix parameter name for die_unwind() in embed.fnc
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -537,11 +537,11 @@ PERL_CALLCONV OP* Perl_die_sv(pTHX_ SV *baseex) PERL_CALLCONV OP* Perl_die(pTHX_ const char* pat, ...) __attribute__format__null_ok__(__printf__,pTHX_1,pTHX_2); -PERL_CALLCONV void Perl_die_unwind(pTHX_ SV* ex) +PERL_CALLCONV void Perl_die_unwind(pTHX_ SV* msv) __attribute__noreturn__ __attribute__nonnull__(pTHX_1); #define PERL_ARGS_ASSERT_DIE_UNWIND \ - assert(ex) + assert(msv) PERL_CALLCONV void Perl_dounwind(pTHX_ I32 cxix); /* PERL_CALLCONV bool Perl_do_aexec(pTHX_ SV* really, SV** mark, SV** sp) |