Skip to content

Commit

Permalink
vulkan: Possibly fix a compiler warning (-Wstrict-prototypes).
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Feb 22, 2018
1 parent c7e4366 commit ac309df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/video/SDL_vulkan_internal.h
Expand Up @@ -81,8 +81,8 @@ extern SDL_bool SDL_Vulkan_GetInstanceExtensions_Helper(unsigned *userCount,
/* No SDL Vulkan support, just include the header for typedefs */
#include "SDL_vulkan.h"

typedef void (*PFN_vkGetInstanceProcAddr) ();
typedef int (*PFN_vkEnumerateInstanceExtensionProperties) ();
typedef void (*PFN_vkGetInstanceProcAddr) (void);
typedef int (*PFN_vkEnumerateInstanceExtensionProperties) (void);

#endif /* SDL_VIDEO_VULKAN */

Expand Down

0 comments on commit ac309df

Please sign in to comment.