avformat/asfenc: replace != 0 error check by <0

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2014-12-20 01:48:26 +01:00
parent 3d6545d51e
commit 4b45aa517c
1 changed files with 1 additions and 1 deletions

View File

@ -485,7 +485,7 @@ static int asf_write_header1(AVFormatContext *s, int64_t file_size,
/* chapters using ASF markers */
if (!asf->is_streamed && s->nb_chapters) {
int ret;
if (ret = asf_write_markers(s))
if ((ret = asf_write_markers(s)) < 0)
return ret;
}
/* stream headers */