summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nvfx/nvfx_vbo.c
diff options
context:
space:
mode:
authorLuca Barbieri <luca@luca-barbieri.com>2010-08-21 23:53:39 +0200
committerLuca Barbieri <luca@luca-barbieri.com>2010-08-21 23:53:39 +0200
commit4edeeaf71564582d5afebc9cb59f4b3f7fb40a7e (patch)
tree23d253d1cad15b725683a3a6fa81ebe734f44599 /src/gallium/drivers/nvfx/nvfx_vbo.c
parent251e48c64a37c4b05f26c96c5a1799c24da6474b (diff)
nvfx: actually fix it properly
Diffstat (limited to 'src/gallium/drivers/nvfx/nvfx_vbo.c')
-rw-r--r--src/gallium/drivers/nvfx/nvfx_vbo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nvfx/nvfx_vbo.c b/src/gallium/drivers/nvfx/nvfx_vbo.c
index b1a06654b6..21d6e0e6f8 100644
--- a/src/gallium/drivers/nvfx/nvfx_vbo.c
+++ b/src/gallium/drivers/nvfx/nvfx_vbo.c
@@ -433,7 +433,7 @@ nvfx_vtxelts_state_create(struct pipe_context *pipe,
if(num_elements > 16)
{
- _debug_printf("Error: application attempted to use %u vertex elements, but only 16 are supported: ignoring the rest\n");
+ _debug_printf("Error: application attempted to use %u vertex elements, but only 16 are supported: ignoring the rest\n", num_elements);
num_elements = 16;
}