diff options
author | marha <marha@users.sourceforge.net> | 2012-02-23 11:41:32 +0100 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-02-23 11:41:32 +0100 |
commit | 3be08ad7b814a6a371bfc8114a9aa7a8cb8bd48c (patch) | |
tree | 2e9b432dabecbdeb909914addddd74f42b14506b /xorg-server/hw/xwin | |
parent | f0c81715e2d827fddc7251bac3cbe115ebd081d3 (diff) | |
download | vcxsrv-3be08ad7b814a6a371bfc8114a9aa7a8cb8bd48c.tar.gz vcxsrv-3be08ad7b814a6a371bfc8114a9aa7a8cb8bd48c.tar.bz2 vcxsrv-3be08ad7b814a6a371bfc8114a9aa7a8cb8bd48c.zip |
Fixed error in debug message
Diffstat (limited to 'xorg-server/hw/xwin')
-rw-r--r-- | xorg-server/hw/xwin/swrastwgl_dri/swrastwgl_dri.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xorg-server/hw/xwin/swrastwgl_dri/swrastwgl_dri.c b/xorg-server/hw/xwin/swrastwgl_dri/swrastwgl_dri.c index 4c20c09ab..4633d4867 100644 --- a/xorg-server/hw/xwin/swrastwgl_dri/swrastwgl_dri.c +++ b/xorg-server/hw/xwin/swrastwgl_dri/swrastwgl_dri.c @@ -894,7 +894,7 @@ static const __DRIconfig **dri_init_screen(__DRIscreen * psp) {
__DRIconfig **configs8, **configs16, **configs24, **configs32;
- PRINTF(__FUNCTION__": psp %x\n");
+ PRINTF(__FUNCTION__": psp %x\n", psp);
psp->extensions = dri_screen_extensions;
@@ -919,7 +919,7 @@ static __DRIscreen *driCreateNewScreen(int scrn, const __DRIextension **extensio if (!psp)
return NULL;
- PRINTF(__FUNCTION__": psp %x\n",psp);
+ PRINTF(__FUNCTION__": psp %x\n", psp);
setupLoaderExtensions(psp, extensions);
|