Browse Source

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

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.6
Michael Niedermayer 10 years ago
parent
commit
4b45aa517c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/asfenc.c

+ 1
- 1
libavformat/asfenc.c 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 */


Loading…
Cancel
Save