From: ehofman Date: Sat, 3 Jul 2004 11:16:53 +0000 (+0000) Subject: Use #elif instead of #else if X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9a9d9c7cc1ef7d606216b390d7f36cad4779fe01;p=simgear.git Use #elif instead of #else if --- diff --git a/simgear/screen/extensions.hxx b/simgear/screen/extensions.hxx index 7c97bd60..f97e0ad7 100644 --- a/simgear/screen/extensions.hxx +++ b/simgear/screen/extensions.hxx @@ -54,7 +54,7 @@ bool SGIsOpenGLExtensionSupported(char *extName); // don't use an inline function for symbol lookup, since it is too big void* macosxGetGLProcAddress(const char *func); -#else if !defined( WIN32 ) +#elif !defined( WIN32 ) void *SGGetGLProcAddress(const char *func);