Skip to content

Commit

Permalink
ISO C correct fix for casting void* to function pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Feb 11, 2018
1 parent 882215e commit 873141a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/windows/SDL_windowsvulkan.c
Expand Up @@ -57,7 +57,7 @@ int WIN_Vulkan_LoadLibrary(_THIS, const char *path)
return -1;
SDL_strlcpy(_this->vulkan_config.loader_path, path,
SDL_arraysize(_this->vulkan_config.loader_path));
vkGetInstanceProcAddr = (PFN_vkGetInstanceProcAddr) SDL_LoadFunction(
*(void **)&vkGetInstanceProcAddr = SDL_LoadFunction(
_this->vulkan_config.loader_handle, "vkGetInstanceProcAddr");
if(!vkGetInstanceProcAddr)
goto fail;
Expand Down

0 comments on commit 873141a

Please sign in to comment.