projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5cbb731
)
Wrap the SvTYPE macro definition in parens.
author
Rafael Garcia-Suarez
<rgarciasuarez@gmail.com>
Wed, 7 Feb 2007 09:04:56 +0000
(09:04 +0000)
committer
Rafael Garcia-Suarez
<rgarciasuarez@gmail.com>
Wed, 7 Feb 2007 09:04:56 +0000
(09:04 +0000)
p4raw-id: //depot/perl@30153
sv.h
patch
|
blob
|
history
diff --git
a/sv.h
b/sv.h
index
d3f69c0
..
ba873ea
100644
(file)
--- a/
sv.h
+++ b/
sv.h
@@
-274,7
+274,7
@@
perform the upgrade if necessary. See C<svtype>.
#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