diff options
author | Father Chrysostomos <sprout@cpan.org> | 2014-09-27 11:11:17 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2014-09-27 11:11:17 -0700 |
commit | 83388ae248e41b83a9d184d87247bf222b7d694d (patch) | |
tree | 53ddc30bc04659e4cc9c731ca2bfa15cb76c704f /pp_pack.c | |
parent | b197e565acf60f96ba64f2ddf30c8c62d7ab5515 (diff) | |
download | perl-83388ae248e41b83a9d184d87247bf222b7d694d.tar.gz |
pp_pack.c: Actually fix threaded builds
Diffstat (limited to 'pp_pack.c')
-rw-r--r-- | pp_pack.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2857,7 +2857,7 @@ S_pack_rec(pTHX_ SV *cat, tempsym_t* symptr, SV **beglist, SV **endlist ) while (len-- > 0) { NV anv; fromstr = NEXTFROM; - S_sv_check_infnan(fromstr, datumtype); + S_sv_check_infnan(aTHX_ fromstr, datumtype); anv = SvNV_nomg(fromstr); if (anv < 0) { |