From 7eb2bc8f52f0e4aaaac1add6236841484dabeecf Mon Sep 17 00:00:00 2001 From: Tomeu Vizoso Date: Fri, 1 May 2020 11:59:13 +0200 Subject: pan/decode: Properly print tripped zeroes The "%" got lost. Signed-off-by: Tomeu Vizoso Fixes: 6148d1be4bb5 ("panfrost: Fix size of bifrost sampler descriptor") Reviewed-by: Alyssa Rosenzweig Part-of: --- src/panfrost/pandecode/decode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panfrost/pandecode/decode.c b/src/panfrost/pandecode/decode.c index 2779ec4873c..52193e2b956 100644 --- a/src/panfrost/pandecode/decode.c +++ b/src/panfrost/pandecode/decode.c @@ -2443,7 +2443,7 @@ pandecode_samplers(mali_ptr samplers, unsigned sampler_count, int job_no, bool i if (s->zero1 || s->zero2 || s->zero3 || s->zero4) { pandecode_msg("XXX: sampler zero tripped\n"); - pandecode_prop("zero = 0x" PRIx64 ", 0x" PRIx64 ", 0x" PRIx64 ", 0x" PRIx64 "\n", s->zero1, s->zero2, s->zero3, s->zero4); + pandecode_prop("zero = 0x%" PRIx64 ", 0x%" PRIx64 ", 0x%" PRIx64 ", 0x%" PRIx64 "\n", s->zero1, s->zero2, s->zero3, s->zero4); } pandecode_indent--; -- cgit v1.2.3