Browse code

drawtext: remove typo

It slipped through the last two iterations.

Luca Barbato authored on 2011/12/08 04:30:55
Showing 1 changed files
... ...
@@ -70,7 +70,7 @@ static const char *fun2_names[] = {
70 70
 
71 71
 static double drand(void *opaque, double min, double max)
72 72
 {
73
-    return val = min + (max-min) / UINT_MAX * av_lfg_get(opaque);
73
+    return min + (max-min) / UINT_MAX * av_lfg_get(opaque);
74 74
 }
75 75
 
76 76
 typedef double (*eval_func2)(void *, double a, double b);