summaryrefslogtreecommitdiff
path: root/src/mesa/main/execmem.c
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2006-05-10 09:00:16 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2006-05-10 09:00:16 +0000
commitadc0490420fa834197a37ffd1e64430333294d02 (patch)
tree852489f30ead5b72fcab10b5944c91642bb57040 /src/mesa/main/execmem.c
parent452be7e7ef0d9ac0205ce7b3277ad1f14558cc2c (diff)
Clean up previous change slightly
Diffstat (limited to 'src/mesa/main/execmem.c')
-rw-r--r--src/mesa/main/execmem.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mesa/main/execmem.c b/src/mesa/main/execmem.c
index 3f4c75939d..b7cbc818c6 100644
--- a/src/mesa/main/execmem.c
+++ b/src/mesa/main/execmem.c
@@ -85,10 +85,8 @@ _mesa_exec_malloc(GLuint size)
if (block)
addr = exec_mem + block->ofs;
- else {
- _mesa_printf("%s failed\n", __FUNCTION__);
- exit(1);
- }
+ else
+ _mesa_printf("_mesa_exec_malloc failed\n");
_glthread_UNLOCK_MUTEX(exec_mutex);