From: Nicholas Clark Date: Mon, 11 Dec 2006 21:52:12 +0000 (+0000) Subject: Fix typo in change 29518 which broke non-debugging builds. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fe9016888567104767dbf71c5a5b5c31341af1f4;p=p5sagit%2Fp5-mst-13.2.git Fix typo in change 29518 which broke non-debugging builds. (Here Mark, you can have the spare ; back again) p4raw-id: //depot/perl@29523 --- diff --git a/sv.h b/sv.h index c919e93..4d7ad36 100644 --- a/sv.h +++ b/sv.h @@ -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)