summaryrefslogtreecommitdiff
path: root/libavfilter/vf_drawtext.c
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2011-12-07 20:30:55 +0100
committerLuca Barbato <lu_zero@gentoo.org>2011-12-07 20:40:18 +0100
commit78212cefe14a2086dc1ea3778b76623b949e5d0c (patch)
tree22a65ea0ad88c210d5289a538cceb318f81b1a61 /libavfilter/vf_drawtext.c
parentbc057f7592b346fdfc05fcb41357947889776ef3 (diff)
drawtext: remove typo
It slipped through the last two iterations.
Diffstat (limited to 'libavfilter/vf_drawtext.c')
-rw-r--r--libavfilter/vf_drawtext.c2
1 files changed, 1 insertions, 1 deletions
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);