Author: cwittich
Date: Wed Jun 20 00:38:49 2007
New Revision: 27241
URL:
http://svn.reactos.org/svn/reactos?rev=27241&view=rev
Log:
return FALSE instead of 0
Modified:
trunk/reactos/dll/win32/gdi32/misc/wingl.c
Modified: trunk/reactos/dll/win32/gdi32/misc/wingl.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/gdi32/misc/wingl…
==============================================================================
--- trunk/reactos/dll/win32/gdi32/misc/wingl.c (original)
+++ trunk/reactos/dll/win32/gdi32/misc/wingl.c Wed Jun 20 00:38:49 2007
@@ -58,7 +58,7 @@
if(glChoosePixelFormat == NULL) {
glChoosePixelFormat = (CHOOSEPIXELFMT)GetProcAddress(hOpenGL,
"wglChoosePixelFormat");
if(glChoosePixelFormat == NULL)
- return(0);
+ return(FALSE);
}
if(glSetPixelFormat == NULL) {