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>2019-02-26 06:31:14 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-26 06:31:48 +0300
commit186bd4d87ba14cfe4f23ed11be1166b42dd0449e (patch)
treefc405b92de6c4989e20bd709e96813eb9ea24bc5 /source/blender/makesrna/intern/rna_access.c
parent1de11c38d4dae96c57d5580a77631093b3e8c33a (diff)
Cleanup: indentation, trailing space
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 2c365c36b72..8282ed04520 100644
--- a/source/blender/makesrna/intern/rna_access.c
+++ b/source/blender/makesrna/intern/rna_access.c
@@ -6380,7 +6380,7 @@ static void rna_array_as_string_recursive(
if (totdim > 1) {
totdim--;
const int end = dim_size[totdim] - 1;
- for (int i = 0; i <= end; i++){
+ for (int i = 0; i <= end; i++) {
rna_array_as_string_recursive(type, buf_p, totdim, dim_size, dynstr);
if (i < end || !end) {
BLI_dynstr_append(dynstr, ", ");