diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2012-03-29 11:02:06 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2012-03-29 11:02:06 (GMT) |
commit | 07c311bcba014dbf00edf4420f6936eb8986f534 (patch) | |
tree | 42ba941e0b37f9500e971b7a75f031253a514fdc /src/freeglut-test.c | |
parent | 875c74934c231db6ed92cd3363d41a1bc724878e (diff) | |
download | mxe-07c311bcba014dbf00edf4420f6936eb8986f534.zip mxe-07c311bcba014dbf00edf4420f6936eb8986f534.tar.gz mxe-07c311bcba014dbf00edf4420f6936eb8986f534.tar.bz2 |
Cleanup coding style via "make cleanup-style"
Diffstat (limited to 'src/freeglut-test.c')
-rw-r--r-- | src/freeglut-test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/freeglut-test.c b/src/freeglut-test.c index f49d7ae..ef6d1c9 100644 --- a/src/freeglut-test.c +++ b/src/freeglut-test.c @@ -13,10 +13,10 @@ int main(int argc, char *argv[]) glutInitWindowSize(640,480); glutInitWindowPosition(10,10); glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH); - + glutCreateWindow("FreeGLUT Shapes"); glutMainLoop(); - + return(0); } |