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:
authorNathan Letwory <nathan@letworyinteractive.com>2007-04-05 14:49:25 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2007-04-05 14:49:25 +0400
commitda64ddeacc90ed3234d9d37cf003eb1085c2775f (patch)
treed76828803a0905f96ba7f820a952e44572d27878 /source/blender/nodes/intern/SHD_nodes/SHD_dynamic.c
parent480236e185e88f807a0fa812c4eb79ce8ed10ed9 (diff)
* pointer convention commit: bNode* node -> bNode *node.
Diffstat (limited to 'source/blender/nodes/intern/SHD_nodes/SHD_dynamic.c')
-rw-r--r--source/blender/nodes/intern/SHD_nodes/SHD_dynamic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/intern/SHD_nodes/SHD_dynamic.c b/source/blender/nodes/intern/SHD_nodes/SHD_dynamic.c
index 2ec506e29cb..1ba777a0533 100644
--- a/source/blender/nodes/intern/SHD_nodes/SHD_dynamic.c
+++ b/source/blender/nodes/intern/SHD_nodes/SHD_dynamic.c
@@ -54,7 +54,7 @@ static void free_dynamicdict(PyObject *dict) {
}
}
-static void node_dynamic_init(bNode* node) {
+static void node_dynamic_init(bNode *node) {
NodeScriptDict *nsd= MEM_callocN(sizeof(NodeScriptDict), "node script dictionary");
int type= node->custom2;
node->custom2= 0;