summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-04-25 17:44:19 +0200
committerStefano Sabatini <stefasab@gmail.com>2012-04-30 23:04:46 +0200
commitd4f8d717ab458fb673dd3a0ae61112cacf10310e (patch)
tree9f3a1e87a136d9b6bb111f09436d3a5b0541ba23
parent39de8343f9274f3c93bf44ecb7dcd832b648365d (diff)
lavu/opt: clarify error message in set_key_value_pair()
-rw-r--r--libavutil/opt.c2
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)