From 78212cefe14a2086dc1ea3778b76623b949e5d0c Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Wed, 7 Dec 2011 20:30:55 +0100 Subject: drawtext: remove typo It slipped through the last two iterations. --- libavfilter/vf_drawtext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter/vf_drawtext.c') diff --git a/libavfilter/vf_drawtext.c b/libavfilter/vf_drawtext.c index 87c8d8f8ac..060c3a4a0e 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); -- cgit v1.2.3