[FFmpeg-devel] [PATCH] lavf/http: Fix incorrectly placed parenthesis.

2015-09-03 Thread Stephan Holljes
Signed-off-by: Stephan Holljes --- libavformat/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) The assignment had incorrectly placed parentheses which resulted in ret always being > 0. diff --git a/libavformat/http.c b/libavformat/http.c index d3c0b7e..c148a29 100644 --- a/libavfor

Re: [FFmpeg-devel] [PATCH] lavf/http: Fix incorrectly placed parenthesis.

2015-09-03 Thread wm4
On Thu, 3 Sep 2015 15:55:10 +0200 Stephan Holljes wrote: > Signed-off-by: Stephan Holljes > --- > libavformat/http.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > The assignment had incorrectly placed parentheses which resulted in ret > always being > 0. Stuff like this can go

Re: [FFmpeg-devel] [PATCH] lavf/http: Fix incorrectly placed parenthesis.

2015-09-03 Thread Michael Niedermayer
On Thu, Sep 03, 2015 at 04:19:06PM +0200, wm4 wrote: > On Thu, 3 Sep 2015 15:55:10 +0200 > Stephan Holljes wrote: > > > Signed-off-by: Stephan Holljes > > --- > > libavformat/http.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > The assignment had incorrectly placed parenth