From 3d059cdfbb1482fd92174664fbca0c29672f4db8 Mon Sep 17 00:00:00 2001 From: Richard Rauch Date: Sat, 11 Oct 2003 11:36:11 +0000 Subject: [PATCH] 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 --- src/freeglut_callbacks.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 ) -- 1.7.10.4