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>2011-01-19 22:58:44 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-01-19 22:58:44 +0300
commite2f9006bd38ec99d8633bbb9f32cf423bceb1c2c (patch)
treeadc3a5e3d7b29742ac71873e2ac78adaa460adc2 /source/blender/nodes
parent36852b98cb6a29c5a172a2a3385a864aa223c7d3 (diff)
set variable as unused.
Diffstat (limited to 'source/blender/nodes')
-rw-r--r--source/blender/nodes/intern/CMP_nodes/CMP_brightness.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/intern/CMP_nodes/CMP_brightness.c b/source/blender/nodes/intern/CMP_nodes/CMP_brightness.c
index ad73a33c13f..6b0d6ff45a0 100644
--- a/source/blender/nodes/intern/CMP_nodes/CMP_brightness.c
+++ b/source/blender/nodes/intern/CMP_nodes/CMP_brightness.c
@@ -44,7 +44,7 @@ static bNodeSocketType cmp_node_brightcontrast_out[]= {
{ -1, 0, "" }
};
-static void do_brightnesscontrast(bNode *node, float *out, float *in, float *in_brightness, float *in_contrast)
+static void do_brightnesscontrast(bNode *UNUSED(node), float *out, float *in, float *in_brightness, float *in_contrast)
{
float i;
int c;