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>2021-07-16 04:45:03 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-07-16 04:45:03 +0300
commitd3c454d66c0a730eafa7edecec158ca3b9edb2d7 (patch)
tree6cc91044bc3c56a51afcc006ece14d1e7ed91f12 /source/blender/makesrna/intern/rna_space.c
parent98c4224ff032a746a54cc04b6d9a485620de0f4a (diff)
Cleanup: compiler warnings
Diffstat (limited to 'source/blender/makesrna/intern/rna_space.c')
-rw-r--r--source/blender/makesrna/intern/rna_space.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index 0019f315bbe..f2d2b190d87 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -2699,7 +2699,7 @@ static const EnumPropertyItem *rna_FileBrowser_FileSelectEntry_id_type_itemf(
{
const FileDirEntry *entry = ptr->data;
if (entry->blentype == 0) {
- const static EnumPropertyItem none_items[] = {
+ static const EnumPropertyItem none_items[] = {
{0, "NONE", 0, "None", ""},
};
return none_items;