Skip to content

Commit

Permalink
Oops, that wasn't right...
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jul 31, 2001
1 parent 5171fb5 commit 70bdffe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/x11/SDL_x11gl.c
Expand Up @@ -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);
}
Expand Down

0 comments on commit 70bdffe

Please sign in to comment.