mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 11:00:11 +01:00
crocus: fix another printf specifier.
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11570>
This commit is contained in:
parent
78c979dc93
commit
d2114bf413
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue