Browse Source

lavf: Fix assignments in if()

Signed-off-by: Martin Storsjö <martin@martin.st>
tags/n1.2
Michael Niedermayer Martin Storsjö 12 years ago
parent
commit
d641ee94b5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/mux.c

+ 1
- 1
libavformat/mux.c View File

@@ -305,7 +305,7 @@ int avformat_write_header(AVFormatContext *s, AVDictionary **options)
return ret;
}

if ((ret = init_pts(s) < 0))
if ((ret = init_pts(s)) < 0)
return ret;

return 0;


Loading…
Cancel
Save