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:
authorJoshua Leung <aligorith@gmail.com>2009-11-11 13:51:40 +0300
committerJoshua Leung <aligorith@gmail.com>2009-11-11 13:51:40 +0300
commit1d84b6bb3c2067c25c1a9a2b64272b641c9b00c9 (patch)
tree093b43f41e0d2e90d7a3d854f496d1be59ae9c70 /source/blender/nodes/intern/CMP_nodes/CMP_levels.c
parent4157e51a251762384298836b027983f4b4cc6c08 (diff)
Nodes Editor + other warning fixes:
* Added 'active node' panel for the Nodes Editor. This panel, in the NKEY region, shows the settings for the active node. Included in this panel is a field used for editing the unique-name of the node too. * Fixed a number of uninitialised vars warnings that I missed in previous commit...
Diffstat (limited to 'source/blender/nodes/intern/CMP_nodes/CMP_levels.c')
-rw-r--r--source/blender/nodes/intern/CMP_nodes/CMP_levels.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/intern/CMP_nodes/CMP_levels.c b/source/blender/nodes/intern/CMP_nodes/CMP_levels.c
index f0e314793ed..9f845727ddd 100644
--- a/source/blender/nodes/intern/CMP_nodes/CMP_levels.c
+++ b/source/blender/nodes/intern/CMP_nodes/CMP_levels.c
@@ -50,7 +50,7 @@ static void rgb_tobw(float r, float g, float b, float* out)
static void fill_bins(bNode* node, CompBuf* in, int* bins)
{
float value[4];
- int ivalue;
+ int ivalue=0;
int x,y;
/*fill bins */