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:
Diffstat (limited to 'source/blender/blenloader/intern/writefile.c')
-rw-r--r--source/blender/blenloader/intern/writefile.c16
1 files changed, 6 insertions, 10 deletions
diff --git a/source/blender/blenloader/intern/writefile.c b/source/blender/blenloader/intern/writefile.c
index 6398d0f59f2..be708697ac6 100644
--- a/source/blender/blenloader/intern/writefile.c
+++ b/source/blender/blenloader/intern/writefile.c
@@ -2572,8 +2572,7 @@ static void write_scene(WriteData *wd, Scene *sce)
seq->strip->done = false;
}
writestruct(wd, DATA, Sequence, 1, seq);
- }
- SEQ_END
+ } SEQ_END;
SEQ_BEGIN(ed, seq)
{
@@ -2639,8 +2638,7 @@ static void write_scene(WriteData *wd, Scene *sce)
}
write_sequence_modifiers(wd, &seq->modifiers);
- }
- SEQ_END
+ } SEQ_END;
/* new; meta stack too, even when its nasty restore code */
for (MetaStack *ms = ed->metastack.first; ms; ms = ms->next) {
@@ -3157,7 +3155,7 @@ static void write_nodetree(WriteData *wd, bNodeTree *ntree)
#ifdef USE_NODE_COMPAT_CUSTOMNODES
static void customnodes_add_deprecated_data(Main *mainvar)
{
- FOREACH_NODETREE(mainvar, ntree, id) {
+ FOREACH_NODETREE_BEGIN(mainvar, ntree, id) {
bNodeLink *link, *last_link = ntree->links.last;
/* only do this for node groups */
@@ -3204,13 +3202,12 @@ static void customnodes_add_deprecated_data(Main *mainvar)
break;
}
}
- }
- FOREACH_NODETREE_END
+ } FOREACH_NODETREE_END;
}
static void customnodes_free_deprecated_data(Main *mainvar)
{
- FOREACH_NODETREE(mainvar, ntree, id) {
+ FOREACH_NODETREE_BEGIN(mainvar, ntree, id) {
bNodeLink *link, *next_link;
for (link = ntree->links.first; link; link = next_link) {
@@ -3219,8 +3216,7 @@ static void customnodes_free_deprecated_data(Main *mainvar)
nodeRemLink(ntree, link);
}
}
- }
- FOREACH_NODETREE_END
+ } FOREACH_NODETREE_END;
}
#endif