diff options
author | Brian Paul <brianp@vmware.com> | 2009-09-01 08:53:31 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-09-01 08:53:34 -0600 |
commit | d9b7d7875b0c114d2fa4956b2bffbe809e5b5a44 (patch) | |
tree | c615f1af6b96bf9ddb11f59fb4b031aa61abcce1 /progs | |
parent | 3f785080db33d437893564dded325452770699be (diff) |
progs/tests: re-enable exit() call
See bug 21267.
Diffstat (limited to 'progs')
-rw-r--r-- | progs/tests/fbotest1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/tests/fbotest1.c b/progs/tests/fbotest1.c index 8dac21494e..0cd7f95c35 100644 --- a/progs/tests/fbotest1.c +++ b/progs/tests/fbotest1.c @@ -127,7 +127,7 @@ Init( void ) if (!glutExtensionSupported("GL_EXT_framebuffer_object")) { printf("GL_EXT_framebuffer_object not found!\n"); - /*exit(0);*/ + exit(0); } printf("GL_RENDERER = %s\n", (char *) glGetString(GL_RENDERER)); |