summaryrefslogtreecommitdiff
path: root/src/mesa/pipe
diff options
context:
space:
mode:
authormichal <michal@michal-laptop.(none)>2007-10-26 17:14:29 +0100
committermichal <michal@michal-laptop.(none)>2007-10-27 19:01:10 +0100
commit11a19866f6e425d23f0a1dd404ae836b3c9f190b (patch)
treeb33f1d1c668755d834644a5b272f48b11bd9b2d4 /src/mesa/pipe
parent0e96a53aec7a4eb0236fa31f4682734b9310cb80 (diff)
Silence compiler warnings.
Diffstat (limited to 'src/mesa/pipe')
-rw-r--r--src/mesa/pipe/draw/draw_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/draw/draw_context.c b/src/mesa/pipe/draw/draw_context.c
index 544c423c2d..61f9e4909b 100644
--- a/src/mesa/pipe/draw/draw_context.c
+++ b/src/mesa/pipe/draw/draw_context.c
@@ -253,7 +253,7 @@ void draw_free_tmps( struct draw_stage *stage )
boolean draw_use_sse(struct draw_context *draw)
{
- return draw->use_sse;
+ return (boolean) draw->use_sse;
}