From ed77348a9e6ae81dfd7c95109aac087e595373ff Mon Sep 17 00:00:00 2001 From: Gerald Pfeifer Date: Wed, 28 Sep 2005 18:11:17 +0000 Subject: [PATCH] Use 0 instead of NULL in create_glxpixmap(). --- dlls/x11drv/opengl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/x11drv/opengl.c b/dlls/x11drv/opengl.c index 9a5355c086e..309af00cbca 100644 --- a/dlls/x11drv/opengl.c +++ b/dlls/x11drv/opengl.c @@ -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) -- 2.11.4.GIT