diff options
author | Dave Airlie <[email protected]> | 2008-02-26 12:28:45 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2008-02-26 12:28:45 +1000 |
commit | 0a64ffb308bbe17fb67aad2829ff36044c9eab47 (patch) | |
tree | 9f5eb3962397279f2ce91082840f992e71875db5 /src/mesa | |
parent | 129b9ad16f95421d12f77c1bd3eca915d8768b78 (diff) |
dri2: dlsym requires some quotes..
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/common/dri_util.c | 2 |
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 ce8ae5e2994..fa07ab0e56d 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; |