diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-04-25 17:44:19 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-04-30 23:04:46 +0200 |
commit | d4f8d717ab458fb673dd3a0ae61112cacf10310e (patch) | |
tree | 9f3a1e87a136d9b6bb111f09436d3a5b0541ba23 /libavutil/opt.c | |
parent | 39de8343f9274f3c93bf44ecb7dcd832b648365d (diff) | |
download | ffmpeg-d4f8d717ab458fb673dd3a0ae61112cacf10310e.tar.gz |
lavu/opt: clarify error message in set_key_value_pair()
Diffstat (limited to 'libavutil/opt.c')
-rw-r--r-- | libavutil/opt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/opt.c b/libavutil/opt.c index 2f8be3bfba..e14ace9b64 100644 --- a/libavutil/opt.c +++ b/libavutil/opt.c @@ -684,7 +684,7 @@ static int parse_key_value_pair(void *ctx, const char **buf, return AVERROR(EINVAL); } - av_log(ctx, AV_LOG_DEBUG, "Setting value '%s' for key '%s'\n", val, key); + av_log(ctx, AV_LOG_DEBUG, "Setting entry with key '%s' to value '%s'\n", key, val); ret = av_opt_set(ctx, key, val, 0); if (ret == AVERROR_OPTION_NOT_FOUND) |