From: Richard Rauch Date: Sat, 11 Oct 2003 11:36:11 +0000 (+0000) Subject: Fixed a basic readability/style error in the code. (Two statements per X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=commitdiff_plain;h=3d059cdfbb1482fd92174664fbca0c29672f4db8;p=freeglut Fixed a basic readability/style error in the code. (Two statements per 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 --- diff --git a/src/freeglut_callbacks.c b/src/freeglut_callbacks.c index 9446315..8c72805 100644 --- a/src/freeglut_callbacks.c +++ b/src/freeglut_callbacks.c @@ -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 )