From d2114bf413a75fc40159cb037c0a773517f93c8c Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Thu, 24 Jun 2021 16:52:01 +1000 Subject: [PATCH] crocus: fix another printf specifier. Part-of: --- src/gallium/drivers/crocus/crocus_batch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallium/drivers/crocus/crocus_batch.c b/src/gallium/drivers/crocus/crocus_batch.c index 5c476808ef4..0cf32c69e58 100644 --- a/src/gallium/drivers/crocus/crocus_batch.c +++ b/src/gallium/drivers/crocus/crocus_batch.c @@ -893,9 +893,9 @@ submit_batch(struct crocus_batch *batch) /* Update brw_bo::gtt_offset */ if (batch->validation_list[i].offset != bo->gtt_offset) { - DBG("BO %d migrated: 0x%" PRIx64 " -> 0x%llx\n", + DBG("BO %d migrated: 0x%" PRIx64 " -> 0x%" PRIx64 "\n", bo->gem_handle, bo->gtt_offset, - batch->validation_list[i].offset); + (uint64_t)batch->validation_list[i].offset); assert(!(bo->kflags & EXEC_OBJECT_PINNED)); bo->gtt_offset = batch->validation_list[i].offset; }