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>2015-01-14 15:53:03 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-01-14 15:53:39 +0300
commitca0605b3ae7b41f32fdd4966e58ff2968ce50efe (patch)
tree56f06a5a003dda0540970452e54e4e4b7ae387f6 /source/blender/windowmanager
parentedad3f93f6da549456ffe8711336d34c7819dbe7 (diff)
cleanup: minor edits
Diffstat (limited to 'source/blender/windowmanager')
-rw-r--r--source/blender/windowmanager/intern/wm_operators.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c
index 02a029fc3f3..d49a298c424 100644
--- a/source/blender/windowmanager/intern/wm_operators.c
+++ b/source/blender/windowmanager/intern/wm_operators.c
@@ -4766,7 +4766,7 @@ static int previews_ensure_exec(bContext *C, wmOperator *UNUSED(op))
/* This will loop over all IDs linked by current one, render icons for them if needed,
* and add them to 'todo' preview_id_stack. */
BKE_library_foreach_ID_link(id, previews_id_ensure_callback, &preview_id_stack, IDWALK_READONLY);
- } while((id = BLI_LINKSTACK_POP(preview_id_stack.id_stack)));
+ } while ((id = BLI_LINKSTACK_POP(preview_id_stack.id_stack)));
}
BLI_LINKSTACK_FREE(preview_id_stack.id_stack);