diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2011-12-07 20:30:55 +0100 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2011-12-07 20:40:18 +0100 |
commit | 78212cefe14a2086dc1ea3778b76623b949e5d0c (patch) | |
tree | 22a65ea0ad88c210d5289a538cceb318f81b1a61 /libavfilter | |
parent | bc057f7592b346fdfc05fcb41357947889776ef3 (diff) | |
download | ffmpeg-78212cefe14a2086dc1ea3778b76623b949e5d0c.tar.gz |
drawtext: remove typo
It slipped through the last two iterations.
Diffstat (limited to 'libavfilter')
-rw-r--r-- | 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 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); |