1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

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

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;
}