mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 15:40:11 +01:00
crocus: Explicitly cast value to uint64_t
Ports 565a80450d from iris.
Acked-by: Jason Ekstrand <jason@jlekstrand.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11546>
This commit is contained in:
parent
17f0d7ef83
commit
fd09727a7d
1 changed files with 2 additions and 2 deletions
|
|
@ -110,9 +110,9 @@ dump_validation_list(struct crocus_batch *batch)
|
|||
assert(batch->validation_list[i].handle ==
|
||||
batch->exec_bos[i]->gem_handle);
|
||||
fprintf(stderr,
|
||||
"[%2d]: %2d %-14s @ 0x%016llx (%" PRIu64 "B)\t %2d refs %s\n", i,
|
||||
"[%2d]: %2d %-14s @ 0x%"PRIx64" (%" PRIu64 "B)\t %2d refs %s\n", i,
|
||||
batch->validation_list[i].handle, batch->exec_bos[i]->name,
|
||||
batch->validation_list[i].offset, batch->exec_bos[i]->size,
|
||||
(uint64_t)batch->validation_list[i].offset, batch->exec_bos[i]->size,
|
||||
batch->exec_bos[i]->refcount,
|
||||
(flags & EXEC_OBJECT_WRITE) ? " (write)" : "");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue