diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-10-11 20:41:35 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-10-11 20:41:35 +0100 |
commit | 7ec2c349a5d9e979773c2f7c684c26ebde61cf67 (patch) | |
tree | 6e0883dda11256482714f5bd8d30f36c075dabce /mathoms.c | |
parent | 6f86b615fa775fad6cc0c49f0615f38543ff5c19 (diff) | |
download | perl-7ec2c349a5d9e979773c2f7c684c26ebde61cf67.tar.gz |
Correct prototype of mathom Perl_mro_isa_changed_in() for ithreads.
6f86b615fa775fad forgot the pTHX_
Diffstat (limited to 'mathoms.c')
-rw-r--r-- | mathoms.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -83,7 +83,7 @@ PERL_CALLCONV I32 Perl_my_lstat(pTHX); PERL_CALLCONV I32 Perl_sv_eq(pTHX_ register SV *sv1, register SV *sv2); PERL_CALLCONV char * Perl_sv_collxfrm(pTHX_ SV *const sv, STRLEN *const nxp); PERL_CALLCONV bool Perl_sv_2bool(pTHX_ register SV *const sv); -PERL_CALLCONV void Perl_mro_isa_changed_in(HV* stash); +PERL_CALLCONV void Perl_mro_isa_changed_in(pTHX_ HV* stash); /* ref() is now a macro using Perl_doref; * this version provided for binary compatibility only. |