summaryrefslogtreecommitdiff
path: root/op.h
diff options
context:
space:
mode:
authorAaron Crane <arc@cpan.org>2014-07-09 00:33:47 +0100
committerAaron Crane <arc@cpan.org>2014-07-09 00:33:47 +0100
commitea7265880ed981c72eec69c768d4bb9e85ae122a (patch)
treed10300bb6cc382846bb1abbf1e90a6daebdcdb0b /op.h
parent586d4abb8e2f0a3c98c8c47e0b5d51925848d8b8 (diff)
downloadperl-ea7265880ed981c72eec69c768d4bb9e85ae122a.tar.gz
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.
Diffstat (limited to 'op.h')
-rw-r--r--op.h2
1 files changed, 1 insertions, 1 deletions
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;