projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
129b9ad
)
dri2: dlsym requires some quotes..
author
Dave Airlie
<airlied@linux.ie>
Tue, 26 Feb 2008 02:28:45 +0000
(12:28 +1000)
committer
Dave Airlie
<airlied@linux.ie>
Tue, 26 Feb 2008 02:28:45 +0000
(12:28 +1000)
src/mesa/drivers/dri/common/dri_util.c
patch
|
blob
|
history
diff --git
a/src/mesa/drivers/dri/common/dri_util.c
b/src/mesa/drivers/dri/common/dri_util.c
index ce8ae5e299419c3e1d08be3f3404bda179bfd65b..fa07ab0e56d771b091f0884e33b3b59659e16094 100644
(file)
--- 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;