In perl.git, the branch maint-5.20 has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/c49405fd21fbf9c1f3f4b2718c3d556492462386?hp=67aabfbe54e1bed6c4f08e943c12115d35fe127f>

- Log -----------------------------------------------------------------
commit c49405fd21fbf9c1f3f4b2718c3d556492462386
Author: Jarkko Hietaniemi <[email protected]>
Date:   Sat Jun 21 22:52:43 2014 -0400

    g++ -DPERL_GLOBAL_STRUCT_PRIVATE died on this.
    
    (cherry picked from commit 31114fe9917b761bdc174de49e81de27555b30e9)
-----------------------------------------------------------------------

Summary of changes:
 util.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/util.c b/util.c
index 7359325..3794848 100644
--- a/util.c
+++ b/util.c
@@ -3415,7 +3415,7 @@ Perl_get_vtbl(pTHX_ int vtbl_id)
     PERL_UNUSED_CONTEXT;
 
     return (vtbl_id < 0 || vtbl_id >= magic_vtable_max)
-       ? NULL : PL_magic_vtables + vtbl_id;
+       ? NULL : (MGVTBL*)PL_magic_vtables + vtbl_id;
 }
 
 I32

--
Perl5 Master Repository

Reply via email to