In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/17eef65c2fb9a95edf9064575d3413b4ec8219b7?hp=f747ebd621ca5f8cd5605b35b81db4ac486f68f9>

- Log -----------------------------------------------------------------
commit 17eef65c2fb9a95edf9064575d3413b4ec8219b7
Author: Jerry D. Hedden <[email protected]>
Date:   Fri Aug 21 10:45:22 2009 -0400

    Fix build warning in mro.c
-----------------------------------------------------------------------

Summary of changes:
 mro.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/mro.c b/mro.c
index 7131593..2dca25c 100644
--- a/mro.c
+++ b/mro.c
@@ -324,7 +324,7 @@ S_mro_get_linear_isa_dfs(pTHX_ HV *stash, U32 level)
                   with it.  */
                if (basestash) {
                    SV **svp;
-                   stored = 
MUTABLE_HV(sv_2mortal(newHVhv(HvMROMETA(basestash)->isa)));
+                   stored = 
MUTABLE_HV(sv_2mortal((SV*)newHVhv(HvMROMETA(basestash)->isa)));
                    av_extend(retval, subrv_items);
                    AvFILLp(retval) = subrv_items;
                    svp = AvARRAY(retval);

--
Perl5 Master Repository

Reply via email to