summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/common
diff options
context:
space:
mode:
authorDave Airlie <airlied@linux.ie>2008-02-26 12:28:45 +1000
committerDave Airlie <airlied@linux.ie>2008-02-26 12:28:45 +1000
commit0a64ffb308bbe17fb67aad2829ff36044c9eab47 (patch)
tree9f5eb3962397279f2ce91082840f992e71875db5 /src/mesa/drivers/dri/common
parent129b9ad16f95421d12f77c1bd3eca915d8768b78 (diff)
dri2: dlsym requires some quotes..
Diffstat (limited to 'src/mesa/drivers/dri/common')
-rw-r--r--src/mesa/drivers/dri/common/dri_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/common/dri_util.c b/src/mesa/drivers/dri/common/dri_util.c
index ce8ae5e299..fa07ab0e56 100644
--- a/src/mesa/drivers/dri/common/dri_util.c
+++ b/src/mesa/drivers/dri/common/dri_util.c
@@ -885,7 +885,7 @@ __DRI2_CREATE_NEW_SCREEN(int scrn, __DRIscreen *psc,
unsigned int *p;
__GLcontextModes *(*initScreen)(__DRIscreen *psc);
- initScreen = dlsym(NULL, __dri2DriverInitScreen);
+ initScreen = dlsym(NULL, "__dri2DriverInitScreen");
if (initScreen == NULL)
return NULL;