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-14 10:58:35 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-05-14 10:58:35 +0400
commitcfbf9c324b273a4c45aaa7ebc2dca5bdddaa3aa6 (patch)
tree069db7df2f0ee7087dda5939f4832b081e6c8945 /source/blender/makesrna
parent5888830acbf9d5bd2d7bd317928366d45371c507 (diff)
style cleanup
Diffstat (limited to 'source/blender/makesrna')
-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 4eae82c5ea8..beab5011f2e 100644
--- a/source/blender/makesrna/intern/rna_access.c
+++ b/source/blender/makesrna/intern/rna_access.c
@@ -2830,7 +2830,7 @@ void RNA_property_collection_skip(CollectionPropertyIterator *iter, int num)
ArrayIterator *internal = iter->internal;
if (!internal->skip) {
- internal->ptr += internal->itemsize*(num-1);
+ internal->ptr += internal->itemsize * (num - 1);
iter->valid = (internal->ptr < internal->endptr);
if (iter->valid)
RNA_property_collection_next(iter);