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>2013-05-11 05:06:01 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-05-11 05:06:01 +0400
commit359edc27d34c3446b682a4b7b777a841c275327a (patch)
tree736b8fcdbab077eacf35bfbd08706b64bdb0121a /source/blender/makesrna/intern/rna_access.c
parent00014949c8a2e77e29d7ad690e20630dc4ebd1af (diff)
style cleanup
Diffstat (limited to 'source/blender/makesrna/intern/rna_access.c')
-rw-r--r--source/blender/makesrna/intern/rna_access.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_access.c b/source/blender/makesrna/intern/rna_access.c
index ac2c994a4f8..4eae82c5ea8 100644
--- a/source/blender/makesrna/intern/rna_access.c
+++ b/source/blender/makesrna/intern/rna_access.c
@@ -2832,7 +2832,7 @@ void RNA_property_collection_skip(CollectionPropertyIterator *iter, int num)
if (!internal->skip) {
internal->ptr += internal->itemsize*(num-1);
iter->valid = (internal->ptr < internal->endptr);
- if(iter->valid)
+ if (iter->valid)
RNA_property_collection_next(iter);
return;
}