From 44b3735078c291291604671f198d8ae701f684e2 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 27 May 2013 18:51:31 +0000 Subject: fix error in own recent commit, also other minor changes. --- source/blender/nodes/intern/node_common.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source/blender/nodes/intern/node_common.c') 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) -- cgit v1.2.3