]> git.sesse.net Git - ffmpeg/commitdiff
lavu/opt: clarify error message in set_key_value_pair()
authorStefano Sabatini <stefasab@gmail.com>
Wed, 25 Apr 2012 15:44:19 +0000 (17:44 +0200)
committerStefano Sabatini <stefasab@gmail.com>
Mon, 30 Apr 2012 21:04:46 +0000 (23:04 +0200)
libavutil/opt.c

index 2f8be3bfba784a2be2dc5d37107a47141b7b278b..e14ace9b64b2286cf8dc959e471da178d26aa519 100644 (file)
@@ -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)