From: Vinson Lee Date: Thu, 18 Feb 2010 07:22:51 +0000 (-0800) Subject: progs/rbug: Silence printf format warning. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=64d18b819b4a1d3ecaac7741d1906ecc7aa3f49e;p=mesa.git progs/rbug: Silence printf format warning. --- diff --git a/progs/rbug/shdr_info.c b/progs/rbug/shdr_info.c index b6864e988e5..ec8d77675ef 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);