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-12-10 03:06:17 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-12-10 03:06:17 +0300
commitcc70f7d048be1970b80e9493b269b331e8adee54 (patch)
tree6e0659d6387d9729b01a2d9b5d48338f2b9cbb3a /source/blender
parent1a8642937dde9b323f055a26a00ece1c3ff6b0e8 (diff)
Cleanup: undeclared variable warning
Diffstat (limited to 'source/blender')
-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 c26ba5b022d..3e6d7352d02 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -374,7 +374,7 @@ static const EnumPropertyItem rna_enum_studio_light_items[] = {
{0, NULL, 0, NULL, NULL},
};
-const EnumPropertyItem rna_enum_view3dshading_render_pass_type_items[] = {
+static const EnumPropertyItem rna_enum_view3dshading_render_pass_type_items[] = {
{SCE_PASS_COMBINED, "COMBINED", 0, "Combined", ""},
/* {SCE_PASS_Z, "Z", 0, "Z", ""},*/
{SCE_PASS_AO, "AO", 0, "Ambient Occlusion", ""},