summaryrefslogtreecommitdiff
path: root/src/mesa/vbo/vbo_exec_array.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-05-21 17:07:33 -0600
committerBrian Paul <brianp@vmware.com>2009-05-21 17:07:33 -0600
commit8b91778f46bf7f48efacf5f14d3cc9023a1986ae (patch)
treee765aab7ee55b7d9a506ebbcf6c260f1b4f86769 /src/mesa/vbo/vbo_exec_array.c
parent3bfe312d0136c95b2a8518d65fa32c89ed474987 (diff)
vbo: fix build breakage...oops
Diffstat (limited to 'src/mesa/vbo/vbo_exec_array.c')
-rw-r--r--src/mesa/vbo/vbo_exec_array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/vbo/vbo_exec_array.c b/src/mesa/vbo/vbo_exec_array.c
index 564f7f71ab..df444932bc 100644
--- a/src/mesa/vbo/vbo_exec_array.c
+++ b/src/mesa/vbo/vbo_exec_array.c
@@ -366,7 +366,7 @@ vbo_exec_DrawRangeElements(GLenum mode,
/* the max element is out of bounds of one or more enabled arrays */
_mesa_warning(ctx, "glDraw[Range]Elements(start %u, end %u, count %d, "
"type 0x%x) index=%u is out of bounds (max=%u)",
- start, end, count, type, end,
+ start, end, count, type, end);
if (0)
_mesa_print_arrays(ctx);
return;