From ea7265880ed981c72eec69c768d4bb9e85ae122a Mon Sep 17 00:00:00 2001 From: Aaron Crane Date: Wed, 9 Jul 2014 00:33:47 +0100 Subject: 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. --- op.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'op.h') diff --git a/op.h b/op.h index 3b8eb17acb..9f94caf875 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; -- cgit v1.2.1