Fixing a build warning in OpenSUSE about control reaching the end of a non-void function; see e-mail from Johannes Obermayr dated February 6, 2012 at 9:40 AM

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@1074 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
fayjf 2012-02-07 01:52:10 +00:00
parent 4ed29b6832
commit d0446f782e

View File

@ -211,6 +211,8 @@ int fgPlatformGlutGet ( GLenum eWhat )
fgWarning( "glutGet(): missing enum handle %d", eWhat );
break;
}
return -1;
}