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

This commit is contained in:
Stefano Sabatini 2015-03-15 14:26:51 +01:00
parent 2cda1a16d0
commit 6a63d0d826

View File

@ -170,7 +170,7 @@ static int set_expr(AVExpr **pexpr, const char *expr, const char *option, void *
NULL, NULL, NULL, NULL, 0, log_ctx);
if (ret < 0) {
av_log(log_ctx, AV_LOG_ERROR,
"Error when evaluating the expression '%s' for %s\n",
"Error when parsing the expression '%s' for %s\n",
expr, option);
*pexpr = old;
return ret;