diff options
author | Lynne <dev@lynne.ee> | 2023-05-29 01:10:02 +0200 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2023-05-29 03:22:58 +0200 |
commit | 58f82fc26a67c32586e635b67efc523ab9755b18 (patch) | |
tree | 2450f9ca110c644623118b84a61188405836f12e /libavutil/vulkan.c | |
parent | 988fd5743d3a286e490e1860ddef169cf8174a1b (diff) | |
download | ffmpeg-58f82fc26a67c32586e635b67efc523ab9755b18.tar.gz |
vulkan: replace usage of %lu with %"SIZE_SPECIFIER"
Diffstat (limited to 'libavutil/vulkan.c')
-rw-r--r-- | libavutil/vulkan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/vulkan.c b/libavutil/vulkan.c index 31e0df494b..bc4466e6c9 100644 --- a/libavutil/vulkan.c +++ b/libavutil/vulkan.c @@ -1079,7 +1079,7 @@ int ff_vk_get_pooled_buffer(FFVulkanContext *ctx, AVBufferPool **buf_pool, ff_vk_free_buf(ctx, data); memset(data, 0, sizeof(*data)); - av_log(ctx, AV_LOG_DEBUG, "Allocating buffer of %lu bytes for pool %p\n", + av_log(ctx, AV_LOG_DEBUG, "Allocating buffer of %"SIZE_SPECIFIER" bytes for pool %p\n", size, *buf_pool); err = ff_vk_create_buf(ctx, data, size, |