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>2013-05-27 22:51:31 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-05-27 22:51:31 +0400
commit44b3735078c291291604671f198d8ae701f684e2 (patch)
tree0dbeb5536dfc4859b510148f9ec282583d19436a /source/blender/nodes/intern
parentd2d0866cff8a56ce3515d822d61ad40ce27180da (diff)
fix error in own recent commit, also other minor changes.
Diffstat (limited to 'source/blender/nodes/intern')
-rw-r--r--source/blender/nodes/intern/node_common.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/nodes/intern/node_common.c b/source/blender/nodes/intern/node_common.c
index e763c4bbeb7..0bea146abea 100644
--- a/source/blender/nodes/intern/node_common.c
+++ b/source/blender/nodes/intern/node_common.c
@@ -270,8 +270,7 @@ static void node_reroute_inherit_type_recursive(bNodeTree *ntree, bNode *node)
node->done = 1;
/* recursive update */
- for (link = ntree->links.first; link; link = link->next)
- {
+ for (link = ntree->links.first; link; link = link->next) {
bNode *fromnode = link->fromnode;
bNode *tonode = link->tonode;
if (!tonode || !fromnode)