Skip to content

Commit

Permalink
Fixed compiler warning - this should have been a const char pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Oct 4, 2016
1 parent 46f44f6 commit 5d5127c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/SDL_egl.c
Expand Up @@ -161,7 +161,7 @@ int
SDL_EGL_LoadLibrary(_THIS, const char *egl_path, NativeDisplayType native_display)
{
void *dll_handle = NULL, *egl_dll_handle = NULL; /* The naming is counter intuitive, but hey, I just work here -- Gabriel */
char *path = NULL;
const char *path = NULL;
#if SDL_VIDEO_DRIVER_WINDOWS || SDL_VIDEO_DRIVER_WINRT
const char *d3dcompiler;
#endif
Expand Down

0 comments on commit 5d5127c

Please sign in to comment.