summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMatt Turner <[email protected]>2015-01-21 20:16:38 -0800
committerMatt Turner <[email protected]>2015-01-21 20:17:26 -0800
commit6de077f01d3439c80c9392455d6ca7e7f4493632 (patch)
treef3051761525c4f3a28cfe8e9d26c3f56c4157c13 /src
parentf88c6a49970ee35d29840e03fd6512a7acd815fb (diff)
i965/vec4: Fix fprintf argument ordering.
Introduced in commit 3167a80b.
Diffstat (limited to 'src')
-rw-r--r--src/mesa/drivers/dri/i965/brw_vec4_generator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vec4_generator.cpp b/src/mesa/drivers/dri/i965/brw_vec4_generator.cpp
index fd37a0587d9..d718f2eac80 100644
--- a/src/mesa/drivers/dri/i965/brw_vec4_generator.cpp
+++ b/src/mesa/drivers/dri/i965/brw_vec4_generator.cpp
@@ -1595,8 +1595,8 @@ vec4_generator::generate_code(const cfg_t *cfg)
shader_prog->Label ? shader_prog->Label : "unnamed",
stage_name, shader_prog->Name);
} else {
- fprintf(stderr, "Native code for %s program %d:\n", prog->Id,
- stage_name);
+ fprintf(stderr, "Native code for %s program %d:\n", stage_name,
+ prog->Id);
}
fprintf(stderr, "%s vec4 shader: %d instructions. %d loops. Compacted %d to %d"
" bytes (%.0f%%)\n",