ISO C correct fix for casting void* to function pointer

This commit is contained in:
Sam Lantinga 2018-02-11 15:29:36 -08:00
parent 882215e138
commit 873141acb1
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ int WIN_Vulkan_LoadLibrary(_THIS, const char *path)
return -1; return -1;
SDL_strlcpy(_this->vulkan_config.loader_path, path, SDL_strlcpy(_this->vulkan_config.loader_path, path,
SDL_arraysize(_this->vulkan_config.loader_path)); SDL_arraysize(_this->vulkan_config.loader_path));
vkGetInstanceProcAddr = (PFN_vkGetInstanceProcAddr) SDL_LoadFunction( *(void **)&vkGetInstanceProcAddr = SDL_LoadFunction(
_this->vulkan_config.loader_handle, "vkGetInstanceProcAddr"); _this->vulkan_config.loader_handle, "vkGetInstanceProcAddr");
if(!vkGetInstanceProcAddr) if(!vkGetInstanceProcAddr)
goto fail; goto fail;