diff options
author | Alyssa Rosenzweig <[email protected]> | 2019-06-10 11:52:32 -0700 |
---|---|---|
committer | Alyssa Rosenzweig <[email protected]> | 2019-06-11 08:44:19 -0700 |
commit | 289405392d94eaaa75bf6a9f892ea5bd55c79221 (patch) | |
tree | 6db3ba67881c68a374b3e86f99800cdc02d848cd /src | |
parent | f4ee8d055c8b32190faab4346d279ae7ebc25f45 (diff) |
panfrost/midgard/disasm: Add missing space
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/panfrost/midgard/disassemble.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/panfrost/midgard/disassemble.c b/src/gallium/drivers/panfrost/midgard/disassemble.c index 0007c01e3d0..2ab2e1122cd 100644 --- a/src/gallium/drivers/panfrost/midgard/disassemble.c +++ b/src/gallium/drivers/panfrost/midgard/disassemble.c @@ -1127,14 +1127,14 @@ print_texture_word(uint32_t *word, unsigned tabs) if (texture->offset_z != 1) printf(" /* z = %d */", texture->offset_z); - printf(","); + printf(", "); } else if (texture->offset_x || texture->offset_y || texture->offset_z) { printf(" + <%d, %d, %d>, ", texture->offset_x, texture->offset_y, texture->offset_z); } else { - printf(","); + printf(", "); } if (texture->lod_register) { |