[PATCH] vkd3d: Fix printf warning about size_t vs SIZE_T mismatch.

Hans-Kristian Arntzen post at arntzen-software.no
Wed Nov 20 12:23:09 CST 2019


Signed-off-by: Hans-Kristian Arntzen <post at arntzen-software.no>
---
 libs/vkd3d/vkd3d_private.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libs/vkd3d/vkd3d_private.h b/libs/vkd3d/vkd3d_private.h
index 84b5ff2..c6bfe96 100644
--- a/libs/vkd3d/vkd3d_private.h
+++ b/libs/vkd3d/vkd3d_private.h
@@ -205,13 +205,13 @@ HRESULT vkd3d_fence_worker_stop(struct vkd3d_fence_worker *worker,
 struct vkd3d_gpu_va_allocation
 {
     D3D12_GPU_VIRTUAL_ADDRESS base;
-    SIZE_T size;
+    size_t size;
     void *ptr;
 };
 
 struct vkd3d_gpu_va_slab
 {
-    SIZE_T size;
+    size_t size;
     void *ptr;
 };
 
-- 
2.24.0




More information about the wine-devel mailing list