[Mesa-dev] [PATCH 07/18] panfrost/midgard/disasm: Add missing space

Alyssa Rosenzweig alyssa.rosenzweig at collabora.com
Mon Jun 10 22:01:35 UTC 2019


Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig at collabora.com>
---
 src/gallium/drivers/panfrost/midgard/disassemble.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/gallium/drivers/panfrost/midgard/disassemble.c b/src/gallium/drivers/panfrost/midgard/disassemble.c
index 10729ca122b..5f553ba27a0 100644
--- a/src/gallium/drivers/panfrost/midgard/disassemble.c
+++ b/src/gallium/drivers/panfrost/midgard/disassemble.c
@@ -1129,14 +1129,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) {
-- 
2.20.1



More information about the mesa-dev mailing list