diff options
author | José Fonseca <[email protected]> | 2008-06-24 10:56:36 +0900 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-06-24 11:00:01 +0900 |
commit | c921a29b3a696f6fa99b648d6cd975dbcf106429 (patch) | |
tree | 30ff344e410f938389add32a6e314f49161aadeb /src/mesa/math | |
parent | c47248bdf8d55f985b199fc6e15b0177305cb6fd (diff) |
mesa: Replace abort by asserts.
Diffstat (limited to 'src/mesa/math')
-rw-r--r-- | src/mesa/math/m_debug_xform.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/math/m_debug_xform.c b/src/mesa/math/m_debug_xform.c index 2af837cf64b..0b07b4fd68d 100644 --- a/src/mesa/math/m_debug_xform.c +++ b/src/mesa/math/m_debug_xform.c @@ -206,7 +206,8 @@ static int test_transform_function( transform_func func, int psize, case VAR: break; default: - abort(); + ASSERT(0); + return 0; } } } |