Change 30153 by [EMAIL PROTECTED] on 2007/02/07 09:04:56
Wrap the SvTYPE macro definition in parens.
Affected files ...
... //depot/perl/sv.h#318 edit
Differences ...
==== //depot/perl/sv.h#318 (text) ====
Index: perl/sv.h
--- perl/sv.h#317~29922~ 2007-01-22 11:38:12.000000000 -0800
+++ perl/sv.h 2007-02-07 01:04:56.000000000 -0800
@@ -274,7 +274,7 @@
#endif
#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.