In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/ea7265880ed981c72eec69c768d4bb9e85ae122a?hp=586d4abb8e2f0a3c98c8c47e0b5d51925848d8b8>

- Log -----------------------------------------------------------------
commit ea7265880ed981c72eec69c768d4bb9e85ae122a
Author: Aaron Crane <a...@cpan.org>
Date:   Wed Jul 9 00:33:47 2014 +0100

    Fix typo in op.h
    
    This caused all OP structures to be larger than intended; for example, it
    made `struct op` 48 bytes rather than 40 on Mac OS X x86-64.
-----------------------------------------------------------------------

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

diff --git a/op.h b/op.h
index 3b8eb17..9f94caf 100644
--- a/op.h
+++ b/op.h
@@ -52,7 +52,7 @@ typedef PERL_BITFIELD16 Optype;
     PERL_BITFIELD16 op_savefree:1;     \
     PERL_BITFIELD16 op_static:1;       \
     PERL_BITFIELD16 op_folded:1;       \
-    PERL_BITFIELD16 op_lastsib;                \
+    PERL_BITFIELD16 op_lastsib:1;       \
     PERL_BITFIELD16 op_spare:1;                \
     U8         op_flags;               \
     U8         op_private;

--
Perl5 Master Repository

Reply via email to