summaryrefslogtreecommitdiff
path: root/progs
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2010-02-17 23:22:51 -0800
committerVinson Lee <vlee@vmware.com>2010-02-17 23:22:51 -0800
commit64d18b819b4a1d3ecaac7741d1906ecc7aa3f49e (patch)
tree989614f437923174f7877eea6531b821df65a3a8 /progs
parent869896f162708e820bcc7e45576258d8ff31ccb0 (diff)
progs/rbug: Silence printf format warning.
Diffstat (limited to 'progs')
-rw-r--r--progs/rbug/shdr_info.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/rbug/shdr_info.c b/progs/rbug/shdr_info.c
index b6864e988e..ec8d77675e 100644
--- a/progs/rbug/shdr_info.c
+++ b/progs/rbug/shdr_info.c
@@ -51,7 +51,7 @@ static void shader_info(struct rbug_connection *con, rbug_context_t ctx)
assert(header->opcode == RBUG_OP_SHADER_INFO_REPLY);
info = (struct rbug_proto_shader_info_reply *)header;
- debug_printf("% 15llu |% 15llu |% 15u |\n",
+ debug_printf("%15llu | %15llu | %15u |\n",
(unsigned long long)ctx,
(unsigned long long)list->shaders[i],
(unsigned)info->disabled);