summaryrefslogtreecommitdiffstats
path: root/video/out
diff options
context:
space:
mode:
authorThomas Weißschuh <thomas@t-8ch.de>2023-01-14 22:35:54 +0000
committerDudemanguy <random342@airmail.cc>2023-01-16 19:25:54 +0000
commit2bbf880d96e66597f4645b3986ccee5c0bbc98b8 (patch)
tree74143691bf0d50eda0d28ca9ff12682dec36b91d /video/out
parentf66c5404f49806e7ff1f65a8c00145976475188e (diff)
downloadmpv-2bbf880d96e66597f4645b3986ccee5c0bbc98b8.tar.bz2
mpv-2bbf880d96e66597f4645b3986ccee5c0bbc98b8.tar.xz
vo: make driver list static
Diffstat (limited to 'video/out')
-rw-r--r--video/out/vo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/vo.c b/video/out/vo.c
index 9abd6ceab3..c0043ce2a7 100644
--- a/video/out/vo.c
+++ b/video/out/vo.c
@@ -69,7 +69,7 @@ extern const struct vo_driver video_out_tct;
extern const struct vo_driver video_out_sixel;
extern const struct vo_driver video_out_kitty;
-const struct vo_driver *const video_out_drivers[] =
+static const struct vo_driver *const video_out_drivers[] =
{
&video_out_libmpv,
#if HAVE_ANDROID