From 3343ac9b757bdb74f6278c622fc64ce965c42acc Mon Sep 17 00:00:00 2001 From: Courtney Goeltzenleuchter Date: Wed, 22 Jul 2015 08:35:04 -0600 Subject: loader: have loader_magic be uintptr_t Twice we've have feedback on this structure not being correct - folks missed the union statment - so changing this to be the same size as a pointer to make it more clear that loaderMagic is the same size as *loaderData. --- include/vk_icd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/vk_icd.h b/include/vk_icd.h index 0f64c722..70c9f799 100644 --- a/include/vk_icd.h +++ b/include/vk_icd.h @@ -14,7 +14,7 @@ #define ICD_LOADER_MAGIC 0x01CDC0DE typedef union _VK_LOADER_DATA { - uint32_t loaderMagic; + uintptr_t loaderMagic; void *loaderData; } VK_LOADER_DATA; -- cgit v1.2.3