From: Boris Brezillon Date: Fri, 22 Apr 2022 18:01:00 +0000 (-0700) Subject: dzn: Fix the STATIC_ASSERT() in dzn_meta_blits_get_context() X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1999e927b017cc3bb9ae6cd9726dd587665e8ab8;p=platform%2Fupstream%2Fmesa.git 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: --- diff --git a/src/microsoft/vulkan/dzn_meta.c b/src/microsoft/vulkan/dzn_meta.c index d0e88db..6ea2ae6 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);