Commit 858f786e authored by Lynne's avatar Lynne

hwcontext_vulkan: fix incorrect print argument

parent 3b5a36c5
...@@ -371,7 +371,7 @@ static int check_extensions(AVHWDeviceContext *ctx, int dev, AVDictionary *opts, ...@@ -371,7 +371,7 @@ static int check_extensions(AVHWDeviceContext *ctx, int dev, AVDictionary *opts,
} }
} }
if (found) { if (found) {
av_log(ctx, AV_LOG_VERBOSE, "Using %s extension \"%s\"\n", mod, tstr); av_log(ctx, AV_LOG_VERBOSE, "Using %s extension \"%s\"\n", mod, token);
ADD_VAL_TO_LIST(extension_names, extensions_found, token); ADD_VAL_TO_LIST(extension_names, extensions_found, token);
} else { } else {
av_log(ctx, AV_LOG_WARNING, "%s extension \"%s\" not found, excluding.\n", av_log(ctx, AV_LOG_WARNING, "%s extension \"%s\" not found, excluding.\n",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment