summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
authornanahi <130121847+na-na-hi@users.noreply.github.com>2024-03-08 02:01:57 -0500
committerKacper Michajłow <kasper93@gmail.com>2024-03-19 08:58:18 +0100
commit82a186567e279e1d458cb39ae78595560eb19c76 (patch)
tree2fd0cec654fd5d0c1702ad7b311aab247d0c3db5 /stream
parent4f381f2137613054cc1fda42de74602249292f47 (diff)
downloadmpv-82a186567e279e1d458cb39ae78595560eb19c76.tar.bz2
mpv-82a186567e279e1d458cb39ae78595560eb19c76.tar.xz
various: fix -Wold-style-declaration warning
warning: `static' is not at beginning of declaration
Diffstat (limited to 'stream')
-rw-r--r--stream/stream_dvb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/stream_dvb.c b/stream/stream_dvb.c
index 215e82ce0b..96590d28f3 100644
--- a/stream/stream_dvb.c
+++ b/stream/stream_dvb.c
@@ -114,7 +114,7 @@ static fe_code_rate_t parse_fec(const char *cr)
static fe_modulation_t parse_vdr_modulation(const char** modstring)
{
- const static struct { const char *s; fe_modulation_t v; } table[] = {
+ static const struct { const char *s; fe_modulation_t v; } table[] = {
{ "16", QAM_16 },
{ "32", QAM_32 },
{ "64", QAM_64 },