From 70bdffe7e000c3eafc5386707a892bd849bbb24e Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Tue, 31 Jul 2001 00:26:32 +0000 Subject: [PATCH] Oops, that wasn't right... --- src/video/x11/SDL_x11gl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }