From 1999e927b017cc3bb9ae6cd9726dd587665e8ab8 Mon Sep 17 00:00:00 2001 From: Boris Brezillon Date: Fri, 22 Apr 2022 11:01:00 -0700 Subject: [PATCH] dzn: Fix the STATIC_ASSERT() in dzn_meta_blits_get_context() We care about the object key size, not the size of a pointer. Fixes: a012b219640 ("microsoft: Initial vulkan-on-12 driver") Reviewed-by: Jesse Natalie Part-of: --- src/microsoft/vulkan/dzn_meta.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/microsoft/vulkan/dzn_meta.c b/src/microsoft/vulkan/dzn_meta.c index d0e88dbab9b..6ea2ae6cb16 100644 --- a/src/microsoft/vulkan/dzn_meta.c +++ b/src/microsoft/vulkan/dzn_meta.c @@ -644,7 +644,7 @@ dzn_meta_blits_get_context(struct dzn_device *device, { struct dzn_meta_blit *out = NULL; - STATIC_ASSERT(sizeof(key) == sizeof(uint64_t)); + STATIC_ASSERT(sizeof(*key) == sizeof(uint64_t)); mtx_lock(&device->blits.contexts_lock);