diff options
author | Aaron Crane <arc@cpan.org> | 2014-07-09 00:33:47 +0100 |
---|---|---|
committer | Aaron Crane <arc@cpan.org> | 2014-07-09 00:33:47 +0100 |
commit | ea7265880ed981c72eec69c768d4bb9e85ae122a (patch) | |
tree | d10300bb6cc382846bb1abbf1e90a6daebdcdb0b /op.h | |
parent | 586d4abb8e2f0a3c98c8c47e0b5d51925848d8b8 (diff) | |
download | perl-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |