diff options
author | José Fonseca <[email protected]> | 2008-03-10 13:04:13 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-03-10 14:00:13 +0000 |
commit | b721bc8792f6add71dede11924d7060bbce72f0e (patch) | |
tree | 8f1c96eefb4b292a5308b75bfbbffc5a57ebdfd4 /src/gallium/auxiliary/draw/draw_unfilled.c | |
parent | b041dbe9019ff8cb16ff15d0baaa803c7dc654db (diff) |
gallium: WinCE portability fixes.
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_unfilled.c')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_unfilled.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_unfilled.c b/src/gallium/auxiliary/draw/draw_unfilled.c index 4d718d514c6..b07860cd9ea 100644 --- a/src/gallium/auxiliary/draw/draw_unfilled.c +++ b/src/gallium/auxiliary/draw/draw_unfilled.c @@ -129,7 +129,7 @@ static void unfilled_tri( struct draw_stage *stage, points( stage, header ); break; default: - abort(); + assert(0); } } |