1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-19 01:47:38 +00:00

loadfile: insert missing parentheses

Impressively, gcc's parentheses warning has caught a situation where
the missing parentheses were really needed.
This commit is contained in:
Philip Langdale 2023-06-26 09:24:39 -07:00
parent 945d7c1eda
commit 9921785340

View File

@ -652,8 +652,8 @@ struct track *select_default_track(struct MPContext *mpctx, int order,
// If the codec is DVD or PGS, we can display it in forced-only mode.
// This isn't really meaningful for other codecs, so we'll just pick nothing.
if (pick->stream &&
!strcmp(pick->stream->codec->codec, "dvd_subtitle") ||
!strcmp(pick->stream->codec->codec, "hdmv_pgs_subtitle"))
(!strcmp(pick->stream->codec->codec, "dvd_subtitle") ||
!strcmp(pick->stream->codec->codec, "hdmv_pgs_subtitle")))
pick->forced_only_def = 1;
else
pick = NULL;