Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-09-19 09:01:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-09-19 09:28:17 +0300
commit14b2a35c8bfd6d77f6357f929ddd82845436725f (patch)
tree54746d6a3cf0da24b95d2a9761e6222656eb5249 /source/blender/nodes/texture
parent17a2820da8ad8ea23d336129f32e060e5746b047 (diff)
Cleanup: use parenthesis for if statements in macros
Diffstat (limited to 'source/blender/nodes/texture')
-rw-r--r--source/blender/nodes/texture/nodes/node_texture_proc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/nodes/texture/nodes/node_texture_proc.c b/source/blender/nodes/texture/nodes/node_texture_proc.c
index bb7ee5f5bff..2cd4e31feb3 100644
--- a/source/blender/nodes/texture/nodes/node_texture_proc.c
+++ b/source/blender/nodes/texture/nodes/node_texture_proc.c
@@ -137,10 +137,12 @@ static int count_outputs(bNode *node)
bNodeStack **out) \
{ \
int outs = count_outputs(node); \
- if (outs >= 1) \
+ if (outs >= 1) { \
tex_output(node, execdata, in, out[0], &name##_colorfn, data); \
- if (outs >= 2) \
+ } \
+ if (outs >= 2) { \
tex_output(node, execdata, in, out[1], &name##_normalfn, data); \
+ } \
}
/* --- VORONOI -- */