Fixed a basic readability/style error in the code. (Two statements per
authorRichard Rauch <rkr@olib.org>
Sat, 11 Oct 2003 11:36:11 +0000 (11:36 +0000)
committerRichard Rauch <rkr@olib.org>
Sat, 11 Oct 2003 11:36:11 +0000 (11:36 +0000)
line are almost never a good idea; in this case the combined line was
past 80 columns.)

git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@224 7f0cb862-5218-0410-a997-914c9d46530a

src/freeglut_callbacks.c

index 9446315..8c72805 100644 (file)
@@ -139,7 +139,8 @@ void FGAPIENTRY glutTimerFunc( unsigned int timeOut, void (* callback)( int ), i
  */
 static void fghVisibility( int status )
 {
-    freeglut_assert_ready; freeglut_return_if_fail( fgStructure.Window != NULL );
+    freeglut_assert_ready;
+    freeglut_return_if_fail( fgStructure.Window != NULL );
     freeglut_return_if_fail( fgStructure.Window->Callbacks.Visibility != NULL );
 
     if( status == GLUT_HIDDEN  || status == GLUT_FULLY_COVERED )