aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCourtney Goeltzenleuchter <courtney@LunarG.com>2015-07-22 08:35:04 -0600
committerCourtney Goeltzenleuchter <courtney@LunarG.com>2015-07-23 10:25:12 -0600
commit3343ac9b757bdb74f6278c622fc64ce965c42acc (patch)
tree428bf4ec9f71d370b8fb04d109a38fd8a37f2d65 /include
parent03f4b776b79e23275b79687a7316dd0fc21b47ff (diff)
downloadusermoji-3343ac9b757bdb74f6278c622fc64ce965c42acc.tar.xz
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.
Diffstat (limited to 'include')
-rw-r--r--include/vk_icd.h2
1 files changed, 1 insertions, 1 deletions
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;