diff options
| author | Keith Whitwell <keith@tungstengraphics.com> | 2006-05-10 09:00:16 +0000 | 
|---|---|---|
| committer | Keith Whitwell <keith@tungstengraphics.com> | 2006-05-10 09:00:16 +0000 | 
| commit | adc0490420fa834197a37ffd1e64430333294d02 (patch) | |
| tree | 852489f30ead5b72fcab10b5944c91642bb57040 /src | |
| parent | 452be7e7ef0d9ac0205ce7b3277ad1f14558cc2c (diff) | |
Clean up previous change slightly
Diffstat (limited to 'src')
| -rw-r--r-- | src/mesa/main/execmem.c | 6 | 
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); | 
