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
path: root/source
diff options
context:
space:
mode:
authorJacques Lucke <mail@jlucke.com>2018-09-24 16:44:12 +0300
committerJacques Lucke <mail@jlucke.com>2018-09-24 16:44:12 +0300
commit920173072ea2791bf16b801bc5a9849ae6d8a4af (patch)
tree5bb0b7486b9a94f20aab51097707e3a2928c0f5b /source
parent6fff22b0179d0f48764c8582a7e427d19110e0cf (diff)
Fix: insert missing break in switch statement (second try)
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenloader/intern/readfile.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 0083adb4cc9..3d2d544ad7e 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -10220,6 +10220,7 @@ void BLO_expand_main(void *fdhandle, Main *mainvar)
break;
case ID_WS:
expand_workspace(fd, mainvar, (WorkSpace *)id);
+ break;
default:
break;
}