summaryrefslogtreecommitdiffstats
path: root/src/gallium
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium')
-rw-r--r--src/gallium/drivers/panfrost/midgard/disassemble.c4
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) {