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:
wm4 2013-07-15 21:28:58 +02:00
parent eb98e43c0f
commit 75dc7cbe0c
1 changed files with 1 additions and 1 deletions

View File

@ -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, "&nbsp;", 6)) { *p++ = ' '; s += 6; }
else if (*s == '\t') { *p++ = ' '; s++; }