Luca Barbato <[email protected]> writes:

> It slipped through the last two iterations.
> ---
>  libavfilter/vf_drawtext.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/libavfilter/vf_drawtext.c b/libavfilter/vf_drawtext.c
> index 87c8d8f..060c3a4 100644
> --- a/libavfilter/vf_drawtext.c
> +++ b/libavfilter/vf_drawtext.c
> @@ -70,7 +70,7 @@ static const char *fun2_names[] = {
>  
>  static double drand(void *opaque, double min, double max)
>  {
> -    return val = min + (max-min) / UINT_MAX * av_lfg_get(opaque);
> +    return min + (max-min) / UINT_MAX * av_lfg_get(opaque);
>  }
>  
>  typedef double (*eval_func2)(void *, double a, double b);
> -- 

OK

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

Reply via email to