Use 0 instead of NULL in create_glxpixmap().

This commit is contained in:
Gerald Pfeifer 2005-09-28 18:11:17 +00:00 committed by Alexandre Julliard
parent 6de4574fb0
commit ed77348a9e
1 changed files with 1 additions and 1 deletions

View File

@ -593,7 +593,7 @@ XVisualInfo *X11DRV_setup_opengl_visual( Display *display )
XID create_glxpixmap(X11DRV_PDEVICE *physDev)
{
return NULL;
return 0;
}
BOOL destroy_glxpixmap(XID glxpixmap)