vulkan_loader: fix typo in error message

This commit is contained in:
Lynne 2021-11-17 15:41:02 +01:00
parent 419d93c379
commit 85a6b7f7b7
No known key found for this signature in database
GPG Key ID: A2FEA5F03F034464
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ static inline int ff_vk_load_functions(AVHWDeviceContext *ctx,
}
if (!fn && ((extensions_mask &~ FF_VK_EXT_NO_FLAG) & load->ext_flag)) {
av_log(ctx, AV_LOG_ERROR, "Loader error, function \"%s\" indicated"
av_log(ctx, AV_LOG_ERROR, "Loader error, function \"%s\" indicated "
"as supported, but got NULL function pointer!\n", load->names[0]);
return AVERROR_EXTERNAL;
}