Change 30154 by [EMAIL PROTECTED] on 2007/02/07 10:45:15
Integrate:
[ 30153]
Wrap the SvTYPE macro definition in parens.
Affected files ...
... //depot/maint-5.8/perl/sv.h#77 integrate
Differences ...
==== //depot/maint-5.8/perl/sv.h#77 (text) ====
Index: perl/sv.h
--- perl/sv.h#76~30141~ 2007-02-05 14:46:22.000000000 -0800
+++ perl/sv.h 2007-02-07 02:45:15.000000000 -0800
@@ -260,7 +260,7 @@
#define SvREFCNT_dec(sv) sv_free((SV*)(sv))
#define SVTYPEMASK 0xff
-#define SvTYPE(sv) (svtype)((sv)->sv_flags & SVTYPEMASK)
+#define SvTYPE(sv) ((svtype)((sv)->sv_flags & SVTYPEMASK))
/* Sadly there are some parts of the core that have pointers to already-freed
SV heads, and rely on being able to tell that they are now free. So mark
End of Patch.