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>2018-12-19 02:07:30 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-12-19 02:18:15 +0300
commitfd235e52a2a1728916df38965a42a60652f2462a (patch)
treeb221835190d32ba88cd8dd5e83af36d10db05fcf /source/blender/windowmanager/intern/wm_files.c
parent1875f9e7d7bcd157fb1c359be6a41984bd84d4dc (diff)
Cleanup: use static struct for app-template state
Diffstat (limited to 'source/blender/windowmanager/intern/wm_files.c')
-rw-r--r--source/blender/windowmanager/intern/wm_files.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_files.c b/source/blender/windowmanager/intern/wm_files.c
index 91b04c982fc..b21a9d87269 100644
--- a/source/blender/windowmanager/intern/wm_files.c
+++ b/source/blender/windowmanager/intern/wm_files.c
@@ -645,7 +645,7 @@ bool WM_file_read(bContext *C, const char *filepath, ReportList *reports)
}
-struct {
+static struct {
char app_template[64];
bool override;
} wm_init_state_app_template = {{0}};