Indentation fix
authorSylvain Beucler <beuc@beuc.net>
Sun, 25 Mar 2012 17:09:42 +0000 (17:09 +0000)
committerSylvain Beucler <beuc@beuc.net>
Sun, 25 Mar 2012 17:09:42 +0000 (17:09 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@1213 7f0cb862-5218-0410-a997-914c9d46530a

src/fg_ext.c

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