Diego Biurrun <[email protected]> writes:

> This eliminates a warning about a set-but-unused variable.
> ---
>  libavformat/nsvdec.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/libavformat/nsvdec.c b/libavformat/nsvdec.c
> index 9adb2f4..6e9cfe3 100644
> --- a/libavformat/nsvdec.c
> +++ b/libavformat/nsvdec.c
> @@ -531,7 +531,7 @@ static int nsv_read_header(AVFormatContext *s, 
> AVFormatParameters *ap)
>      err = nsv_read_chunk(s, 1);
>  
>      av_dlog(s, "parsed header\n");
> -    return 0;
> +    return err;
>  }
>  
>  static int nsv_read_chunk(AVFormatContext *s, int fill_header)
> -- 

Looks sane to me.

-- 
Måns Rullgård
[email protected]
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to