Browse code

lavfi/eq: clarify error message in case of expression parsing error

Stefano Sabatini authored on 2015/03/15 22:26:51
Showing 1 changed files
... ...
@@ -170,7 +170,7 @@ static int set_expr(AVExpr **pexpr, const char *expr, const char *option, void *
170 170
                         NULL, NULL, NULL, NULL, 0, log_ctx);
171 171
     if (ret < 0) {
172 172
         av_log(log_ctx, AV_LOG_ERROR,
173
-               "Error when evaluating the expression '%s' for %s\n",
173
+               "Error when parsing the expression '%s' for %s\n",
174 174
                expr, option);
175 175
         *pexpr = old;
176 176
         return ret;