diff options
| author | Mark Young <marky@lunarg.com> | 2016-01-13 13:47:16 -0700 |
|---|---|---|
| committer | Mark Young <marky@lunarg.com> | 2016-01-25 11:01:48 -0700 |
| commit | cda9d8450dd0d15f5f017a47aa3ebb778ea9a2da (patch) | |
| tree | 31b8ed27f32332ab4bb1203e1eb1f5969a5a75bd /loader/wsi.c | |
| parent | 0a6dd5230a9e5d0c9a9039c204f0ebb317accd60 (diff) | |
| download | usermoji-cda9d8450dd0d15f5f017a47aa3ebb778ea9a2da.tar.xz | |
Win32: Get 32-bit Windows build working
Also includes changes to allow simultaneous 32-bit and 64-bit Windows builds.
Diffstat (limited to 'loader/wsi.c')
| -rw-r--r-- | loader/wsi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/wsi.c b/loader/wsi.c index 584e3e69..d482d54f 100644 --- a/loader/wsi.c +++ b/loader/wsi.c @@ -203,7 +203,7 @@ VKAPI_ATTR void VKAPI_CALL loader_DestroySurfaceKHR( { struct loader_instance *ptr_instance = loader_get_instance(instance); - loader_heap_free(ptr_instance, surface); + loader_heap_free(ptr_instance, (void *)surface); } /* |
