From 4c6b9e2fbefeafbaa491d70790546fb0111a467f Mon Sep 17 00:00:00 2001 From: Yiwei Zhang Date: Thu, 4 Apr 2024 13:57:21 -0700 Subject: [PATCH] venus: fix to drop an extra ; Fixes: 32283b9703b ("Refactor and add template support for iub") Signed-off-by: Yiwei Zhang Part-of: --- src/virtio/vulkan/vn_descriptor_set.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/virtio/vulkan/vn_descriptor_set.c b/src/virtio/vulkan/vn_descriptor_set.c index 96a84de63ae..df33710946a 100644 --- a/src/virtio/vulkan/vn_descriptor_set.c +++ b/src/virtio/vulkan/vn_descriptor_set.c @@ -1153,7 +1153,7 @@ vn_update_descriptor_set_with_template_locked( *dst = *src; } break; - case VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK:; + case VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK: VkWriteDescriptorSetInlineUniformBlock *iub_data = (VkWriteDescriptorSetInlineUniformBlock *)vk_find_struct_const( write->pNext, WRITE_DESCRIPTOR_SET_INLINE_UNIFORM_BLOCK);