diff options
author | Brian Paul <[email protected]> | 2009-09-01 08:53:31 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-09-03 16:07:45 -0600 |
commit | 375a6b4c4a68fff0567b304fc24de78ea8250124 (patch) | |
tree | eb4b56e461370021681a1f2be3b01530506f7b9e /progs | |
parent | 3b96db337d1ffd51f514dd7099ea04c515dc0e45 (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 8dac21494e6..0cd7f95c355 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)); |