summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2008-12-10 18:21:40 -0700
committerBrian Paul <brian.paul@tungstengraphics.com>2008-12-10 18:21:40 -0700
commitce3436795c0ddc110d83a5658e5ff10c202a4490 (patch)
tree7ef608676daf6f67c53be35e26c0e542c08a2e9e /src
parent0c31661e73dd2979df22a275452efc71c7064f81 (diff)
gallium: added missing brace to fix broken build
Diffstat (limited to 'src')
-rw-r--r--src/gallium/auxiliary/draw/draw_pt_fetch_emit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_pt_fetch_emit.c b/src/gallium/auxiliary/draw/draw_pt_fetch_emit.c
index 39159b747d..0227652632 100644
--- a/src/gallium/auxiliary/draw/draw_pt_fetch_emit.c
+++ b/src/gallium/auxiliary/draw/draw_pt_fetch_emit.c
@@ -288,7 +288,7 @@ static void fetch_emit_run_linear( struct draw_pt_middle_end *middle,
*/
draw_do_flush( draw, DRAW_FLUSH_BACKEND );
- if (count >= UNDEFINED_VERTEX_ID)
+ if (count >= UNDEFINED_VERTEX_ID) {
assert(0);
return;
}