mirror of https://github.com/mpv-player/mpv
demux_subreader: make clang happy to fix warning
Clang warns here, probably because it's easy to confuse with the usual ((a=b)) pattern.
This commit is contained in:
parent
eb98e43c0f
commit
75dc7cbe0c
|
@ -214,7 +214,7 @@ static subtitle *sub_read_line_sami(stream_t* st, subtitle *current,
|
|||
sami_add_line(current, text, &p);
|
||||
s += 4;
|
||||
}
|
||||
else if ((*s == '{')) { state = 5; ++s; continue; }
|
||||
else if (*s == '{') { state = 5; ++s; continue; }
|
||||
else if (*s == '<') { state = 4; }
|
||||
else if (!strncasecmp (s, " ", 6)) { *p++ = ' '; s += 6; }
|
||||
else if (*s == '\t') { *p++ = ' '; s++; }
|
||||
|
|
Loading…
Reference in New Issue