From 9eaf219355e8b42eb60c5d89d45007cfd55e1e4f Mon Sep 17 00:00:00 2001 From: Christoph von Wittich Date: Tue, 19 Jun 2007 20:38:49 +0000 Subject: [PATCH] return FALSE instead of 0 svn path=/trunk/; revision=27241 --- reactos/dll/win32/gdi32/misc/wingl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/win32/gdi32/misc/wingl.c b/reactos/dll/win32/gdi32/misc/wingl.c index 72b7b92e109..d08a8e6f30e 100644 --- a/reactos/dll/win32/gdi32/misc/wingl.c +++ b/reactos/dll/win32/gdi32/misc/wingl.c @@ -58,7 +58,7 @@ static BOOL OpenGLEnable(void) if(glChoosePixelFormat == NULL) { glChoosePixelFormat = (CHOOSEPIXELFMT)GetProcAddress(hOpenGL, "wglChoosePixelFormat"); if(glChoosePixelFormat == NULL) - return(0); + return(FALSE); } if(glSetPixelFormat == NULL) {