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 <campbell@blender.org>2022-06-02 03:07:07 +0300
committerCampbell Barton <campbell@blender.org>2022-06-02 03:07:07 +0300
commit604409b8c7071920e6cc7a672571449070375919 (patch)
treea0ec5e377936a8e37dfb17d30866eac39cacab39
parentf60ac5068a6a002bb43e35ff84a906b285bb356e (diff)
Cleanup: undeclared warning
-rw-r--r--source/blender/makesrna/intern/rna_sound.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_sound.c b/source/blender/makesrna/intern/rna_sound.c
index 2714b4157fd..e38481a845a 100644
--- a/source/blender/makesrna/intern/rna_sound.c
+++ b/source/blender/makesrna/intern/rna_sound.c
@@ -15,7 +15,7 @@
#include "BKE_sound.h"
/* Enumeration for Audio Channels, compatible with eSoundChannels */
-const EnumPropertyItem rna_enum_audio_channels_items[] = {
+static const EnumPropertyItem rna_enum_audio_channels_items[] = {
{SOUND_CHANNELS_INVALID, "INVALID", ICON_NONE, "Invalid", "Invalid"},
{SOUND_CHANNELS_MONO, "MONO", ICON_NONE, "Mono", "Mono"},
{SOUND_CHANNELS_STEREO, "STEREO", ICON_NONE, "Stereo", "Stereo"},