Commit 78212cef authored by Luca Barbato's avatar Luca Barbato

drawtext: remove typo

It slipped through the last two iterations.
parent bc057f75
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment