diff --git a/src/video/x11/SDL_x11gl.c b/src/video/x11/SDL_x11gl.c index 520d299e5..b7e188144 100644 --- a/src/video/x11/SDL_x11gl.c +++ b/src/video/x11/SDL_x11gl.c @@ -414,7 +414,7 @@ fprintf(stderr, "glXGetProcAddress returned %p and dlsym returned %p for %s\n", #endif retval = dlsym(handle, proc); if (!retval && strlen(proc) <= 1022) { - procname[0] = "_"; + procname[0] = '_'; strcpy(procname + 1, proc); retval = dlsym(handle, procname); }