From 411ef94f4692a4e814a175a8c7ac0725d42e670c Mon Sep 17 00:00:00 2001 From: "joonbum.ko" Date: Wed, 20 Jun 2018 13:38:41 +0900 Subject: [PATCH] wsi.h: Fixed wrong type for const pointer value. Change-Id: Iaffd885ff3db4da4d1db18c3310f5ceea62b4db5 Signed-off-by: joonbum.ko --- src/wsi/wsi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wsi/wsi.h b/src/wsi/wsi.h index 6691029..7b59d14 100644 --- a/src/wsi/wsi.h +++ b/src/wsi/wsi.h @@ -123,7 +123,7 @@ struct vk_buffer { }; struct vk_swapchain { - VkAllocationCallbacks *allocator; + const VkAllocationCallbacks *allocator; VkSurfaceKHR surface; VkResult (*get_buffers) (VkDevice, -- 2.7.4