1
mirror of https://github.com/mpv-player/mpv synced 2024-10-26 07:22:17 +02:00

command: silence a warning

This is unreachable code, but the compiler doesn't always determine
this. This change shuts up the warning in these cases.
This commit is contained in:
wm4 2013-07-29 01:03:36 +02:00
parent fece4e3053
commit 5f9aa74279

View File

@ -2000,6 +2000,8 @@ static void change_filters(MPContext *mpctx, enum stream_type mediatype,
option = "af";
list = &opts->af_settings;
break;
default:
abort();
}
// The option parser is used to modify the filter list itself.