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:
authorJoseph Eagar <joeedh@gmail.com>2009-04-20 00:09:31 +0400
committerJoseph Eagar <joeedh@gmail.com>2009-04-20 00:09:31 +0400
commit514654009570cba78e5215f524714adf5f91812a (patch)
treeb212b35515ab92ae9f620c886cf6b589c4845361 /source/blender/python
parentf1979f45ec3fdfdc1e0faa807ee8c5595dd6b82e (diff)
changed some {} to {0}, these were causing errors on msvc. also got rid of some spurious prototypes I forgot to get rid off.
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/intern/bpy_rna.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c
index 627b240c65d..0b05b11deff 100644
--- a/source/blender/python/intern/bpy_rna.c
+++ b/source/blender/python/intern/bpy_rna.c
@@ -1010,6 +1010,7 @@ PyObject *pyrna_param_to_py(PointerRNA *ptr, PropertyRNA *prop, void *data)
PyObject *ret;
int type = RNA_property_type(prop);
int len = RNA_property_array_length(prop);
+
int a;
if(len > 0) {