diff options
author | Lynne <dev@lynne.ee> | 2021-11-17 15:41:02 +0100 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2021-11-18 06:40:52 +0100 |
commit | 85a6b7f7b746a7bf71146b1530f19f699c4f0fb4 (patch) | |
tree | 3804465188a30c76d92250d902e40ac65c2b0746 | |
parent | 419d93c379bb6834529ec7e65a18ce4982c864aa (diff) | |
download | ffmpeg-85a6b7f7b746a7bf71146b1530f19f699c4f0fb4.tar.gz |
vulkan_loader: fix typo in error message
-rw-r--r-- | libavutil/vulkan_loader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/vulkan_loader.h b/libavutil/vulkan_loader.h index d4e05e62d7..3f1ee6aa46 100644 --- a/libavutil/vulkan_loader.h +++ b/libavutil/vulkan_loader.h @@ -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; } |