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:
authorBastien Montagne <montagne29@wanadoo.fr>2012-02-27 22:20:58 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-02-27 22:20:58 +0400
commit40fca4ed217c3eafe8205e53d404c44b1126952d (patch)
tree2beda36f9250cbce84f7ac716002cd1e5940c679
parent49adbe3ab8d1709979298870e981def6f69777e2 (diff)
Quite a warning (unused param in func), was preventing debug build...
-rw-r--r--source/blender/editors/space_node/node_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_node/node_edit.c b/source/blender/editors/space_node/node_edit.c
index be16cbd9014..c89e91724fb 100644
--- a/source/blender/editors/space_node/node_edit.c
+++ b/source/blender/editors/space_node/node_edit.c
@@ -2637,7 +2637,7 @@ void NODE_OT_links_cut(wmOperatorType *ot)
/* ********************** Detach links operator ***************** */
-static int detach_links_exec(bContext *C, wmOperator *op)
+static int detach_links_exec(bContext *C, wmOperator *UNUSED(op))
{
SpaceNode *snode= CTX_wm_space_node(C);
bNodeTree *ntree= snode->edittree;