Indentation fix

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@1213 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
beuc 2012-03-25 17:09:42 +00:00
parent 0f713eaaba
commit 6e8d6a3f36

View File

@ -217,8 +217,8 @@ glutGetProcAddress( const char *procName )
/* Try GLUT functions first, then core GL functions */ /* Try GLUT functions first, then core GL functions */
p = fghGetGLUTProcAddress( procName ); p = fghGetGLUTProcAddress( procName );
/* Some GLUT functions are platform-specific: */ /* Some GLUT functions are platform-specific: */
if ( !p ) if ( !p )
p = fgPlatformGetGLUTProcAddress( procName ); p = fgPlatformGetGLUTProcAddress( procName );
return ( p != NULL ) ? p : fgPlatformGetProcAddress( procName ); return ( p != NULL ) ? p : fgPlatformGetProcAddress( procName );