diff options
author | Dave Airlie <[email protected]> | 2010-09-06 09:13:12 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2010-09-06 09:15:41 +1000 |
commit | 6ec0fff822f66170f190515fc5e718142f6a5e28 (patch) | |
tree | 1f957bafe679aa4a582c85faa110fbf21601a2b2 /src/gallium | |
parent | 357a7e90dfab9ea0ea32936fd4a5f973a5caadc8 (diff) |
r600g: add missing printf operand
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/r600/r600_asm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_asm.c b/src/gallium/drivers/r600/r600_asm.c index 6483dac7039..bf3d31cd2b0 100644 --- a/src/gallium/drivers/r600/r600_asm.c +++ b/src/gallium/drivers/r600/r600_asm.c @@ -376,7 +376,7 @@ static int r600_bc_alu_build(struct r600_bc *bc, struct r600_bc_alu *alu, unsign } if (alu->last) { if (alu->nliteral && !alu->literal_added) { - R600_ERR("Bug in ALU processing for instruction 0x%08x, literal not added correctly\n"); + R600_ERR("Bug in ALU processing for instruction 0x%08x, literal not added correctly\n", alu->inst); } for (i = 0; i < alu->nliteral; i++) { bc->bytecode[id++] = alu->value[i]; |