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 /libavcodec/vulkan_video.c | |
parent | 988fd5743d3a286e490e1860ddef169cf8174a1b (diff) | |
download | ffmpeg-58f82fc26a67c32586e635b67efc523ab9755b18.tar.gz |
vulkan: replace usage of %lu with %"SIZE_SPECIFIER"
Diffstat (limited to 'libavcodec/vulkan_video.c')
-rw-r--r-- | libavcodec/vulkan_video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vulkan_video.c b/libavcodec/vulkan_video.c index 24ef73ddf9..9a363aab02 100644 --- a/libavcodec/vulkan_video.c +++ b/libavcodec/vulkan_video.c @@ -339,7 +339,7 @@ av_cold int ff_vk_video_common_init(void *log, FFVulkanContext *s, .memorySize = mem[i].memoryRequirements.size, }; - av_log(log, AV_LOG_VERBOSE, "Allocating %lu bytes in bind index %i for video session\n", + av_log(log, AV_LOG_VERBOSE, "Allocating %"SIZE_SPECIFIER" bytes in bind index %i for video session\n", bind_mem[i].memorySize, bind_mem[i].memoryBindIndex); } |