diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-12-11 21:52:12 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-12-11 21:52:12 +0000 |
commit | fe9016888567104767dbf71c5a5b5c31341af1f4 (patch) | |
tree | 9a0f59db52b44c4cebf9f95a845f36ad9036de67 /sv.h | |
parent | c8029a41836bfd27a0636d6911767d88af046f75 (diff) | |
download | perl-fe9016888567104767dbf71c5a5b5c31341af1f4.tar.gz |
Fix typo in change 29518 which broke non-debugging builds.
(Here Mark, you can have the spare ; back again)
p4raw-id: //depot/perl@29523
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1067,7 +1067,7 @@ the scalar's value cannot change unless written to. }) #else # define SvTAIL(sv) ((SvFLAGS(sv) & (SVpbm_TAIL|SVpbm_VALID)) \ - == (SVpbm_TAIL|SVpbm_VALID)); + == (SVpbm_TAIL|SVpbm_VALID)) #endif #define SvTAIL_on(sv) (SvFLAGS(sv) |= SVpbm_TAIL) |