Module: Mesa Branch: master Commit: 7eb2bc8f52f0e4aaaac1add6236841484dabeecf URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=7eb2bc8f52f0e4aaaac1add6236841484dabeecf
Author: Tomeu Vizoso <[email protected]> Date: Fri May 1 11:59:13 2020 +0200 pan/decode: Properly print tripped zeroes The "%" got lost. Signed-off-by: Tomeu Vizoso <[email protected]> Fixes: 6148d1be4bb5 ("panfrost: Fix size of bifrost sampler descriptor") Reviewed-by: Alyssa Rosenzweig <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4832> --- 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--; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
