diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2006-08-22 13:45:41 +0300 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2006-08-22 14:07:13 +0000 |
commit | 8a722a808f014b250085459c05169292bb4903ff (patch) | |
tree | d040c38223b4e51c0850e2c2a16ddadc6a7b11d6 /ext/XS | |
parent | 606fd33d334f8edd9f204342f82ec81c3bb776b1 (diff) | |
download | perl-8a722a808f014b250085459c05169292bb4903ff.tar.gz |
g++: fix Digest::MD5, Math::BigInt::FastCalc, ODBM_File, XS::APItest (and Time::HiRes 1.88 in CPAN)
Message-Id: <200608220745.k7M7jfjP050939@kosh.hut.fi>
...plus various version bumps and Digest::MD5 test file fixes.
p4raw-id: //depot/perl@28744
Diffstat (limited to 'ext/XS')
-rw-r--r-- | ext/XS/APItest/APItest.pm | 2 | ||||
-rw-r--r-- | ext/XS/APItest/APItest.xs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/XS/APItest/APItest.pm b/ext/XS/APItest/APItest.pm index b9988c141f..959125779b 100644 --- a/ext/XS/APItest/APItest.pm +++ b/ext/XS/APItest/APItest.pm @@ -34,7 +34,7 @@ sub G_KEEPERR() { 16 } sub G_NODEBUG() { 32 } sub G_METHOD() { 64 } -our $VERSION = '0.09'; +our $VERSION = '0.10'; bootstrap XS::APItest $VERSION; diff --git a/ext/XS/APItest/APItest.xs b/ext/XS/APItest/APItest.xs index 0bba0bbce7..0c5c5175e8 100644 --- a/ext/XS/APItest/APItest.xs +++ b/ext/XS/APItest/APItest.xs @@ -78,7 +78,7 @@ test_freeent(freeent_function *f) { test expect to be able to call del_HE on the HE */ if (!PL_body_roots[HE_SVSLOT]) croak("PL_he_root is 0"); - victim = PL_body_roots[HE_SVSLOT]; + victim = (HE*) PL_body_roots[HE_SVSLOT]; PL_body_roots[HE_SVSLOT] = HeNEXT(victim); #endif |