drawtext: remove typo

It slipped through the last two iterations.
This commit is contained in:
Luca Barbato 2011-12-07 20:30:55 +01:00
parent bc057f7592
commit 78212cefe1

View File

@ -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);