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-04-20 12:28:21 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-20 12:30:19 +0300
commitbbc5c1e36fc93e33fce4156f5064dfebe1129a57 (patch)
treed0631e65978720ce2eba8deede13ba0cc76821dc /source/blender/makesrna/intern/rna_color.c
parent20bc30706b9c810ea774d98a768734767f9e91be (diff)
Cleanup: quiet extra-semicolon warning
Diffstat (limited to 'source/blender/makesrna/intern/rna_color.c')
-rw-r--r--source/blender/makesrna/intern/rna_color.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/source/blender/makesrna/intern/rna_color.c b/source/blender/makesrna/intern/rna_color.c
index 2e540e8b105..934847fed50 100644
--- a/source/blender/makesrna/intern/rna_color.c
+++ b/source/blender/makesrna/intern/rna_color.c
@@ -594,9 +594,7 @@ static void rna_ColorManagedColorspaceSettings_reload_update(Main *bmain,
bool seq_found = false;
if (&scene->sequencer_colorspace_settings != colorspace_settings) {
- SEQ_BEGIN (scene->ed, seq)
- ;
- {
+ SEQ_BEGIN (scene->ed, seq) {
if (seq->strip && &seq->strip->colorspace_settings == colorspace_settings) {
seq_found = true;
break;
@@ -617,9 +615,7 @@ static void rna_ColorManagedColorspaceSettings_reload_update(Main *bmain,
BKE_sequencer_preprocessed_cache_cleanup_sequence(seq);
}
else {
- SEQ_BEGIN (scene->ed, seq)
- ;
- {
+ SEQ_BEGIN (scene->ed, seq) {
BKE_sequence_free_anim(seq);
}
SEQ_END;