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:
authorShaul Kedem <shaul_kedem@yahoo.com>2009-07-27 23:33:06 +0400
committerShaul Kedem <shaul_kedem@yahoo.com>2009-07-27 23:33:06 +0400
commit793324ef836f9719c8c97c51ed9e4c6a7bb68e59 (patch)
treea9b9e03a72389e1f6336bf621f2347b2bc47fc88 /source/blender/editors/space_outliner
parenta869bdc44e8591b8e45c4aa3b0fac43f5ae55a26 (diff)
small msvc fix
Diffstat (limited to 'source/blender/editors/space_outliner')
-rw-r--r--source/blender/editors/space_outliner/outliner.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_outliner/outliner.c b/source/blender/editors/space_outliner/outliner.c
index b1919391c8d..589feac6226 100644
--- a/source/blender/editors/space_outliner/outliner.c
+++ b/source/blender/editors/space_outliner/outliner.c
@@ -561,7 +561,7 @@ static TreeElement *outliner_add_element(SpaceOops *soops, ListBase *lb, void *i
TreeElement *te;
TreeStoreElem *tselem;
ID *id= idv;
- int a;
+ int a = 0;
if(ELEM3(type, TSE_RNA_STRUCT, TSE_RNA_PROPERTY, TSE_RNA_ARRAY_ELEM)) {
id= ((PointerRNA*)idv)->id.data;