diff options
author | Jerry D. Hedden <jdhedden@cpan.org> | 2009-08-21 10:45:22 -0400 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-08-21 19:12:52 +0100 |
commit | 17eef65c2fb9a95edf9064575d3413b4ec8219b7 (patch) | |
tree | 4463396ff709fa217c9a0eb0c4bdd705a8321678 /mro.c | |
parent | f747ebd621ca5f8cd5605b35b81db4ac486f68f9 (diff) | |
download | perl-17eef65c2fb9a95edf9064575d3413b4ec8219b7.tar.gz |
Fix build warning in mro.c
Diffstat (limited to 'mro.c')
-rw-r--r-- | mro.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |