diff options
author | Brian Paul <brianp@vmware.com> | 2009-08-11 09:30:12 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-08-11 09:30:12 -0600 |
commit | bb45e6f07bdb26df2e4d6ecddaae9b9c5ba0809e (patch) | |
tree | c5e39977a9ba45f521edaaddfe6d9d223861c2d9 /src | |
parent | a9d37f68377df851350d773cf53ca6d873e92aa1 (diff) |
gallium: fix debug_printf() format string
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_ppc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_ppc.c b/src/gallium/auxiliary/tgsi/tgsi_ppc.c index 922f147b94..2d6ad12ffb 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_ppc.c +++ b/src/gallium/auxiliary/tgsi/tgsi_ppc.c @@ -1319,7 +1319,7 @@ tgsi_emit_ppc(const struct tgsi_token *tokens, if (!ok) { uint opcode = parse.FullToken.FullInstruction.Instruction.Opcode; - debug_printf("failed to translate tgsi opcode %d to PPC (%s)\n", + debug_printf("failed to translate tgsi opcode %d (%s) to PPC (%s)\n", opcode, tgsi_get_opcode_name(opcode), parse.FullHeader.Processor.Processor == TGSI_PROCESSOR_VERTEX ? |