From 78212cefe14a2086dc1ea3778b76623b949e5d0c Mon Sep 17 00:00:00 2001 From: Luca Barbato <lu_zero@gentoo.org> Date: Wed, 7 Dec 2011 20:30:55 +0100 Subject: [PATCH] drawtext: remove typo It slipped through the last two iterations. --- libavfilter/vf_drawtext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_drawtext.c b/libavfilter/vf_drawtext.c index 87c8d8f8ac6..060c3a4a0e2 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); -- GitLab