mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 06:58:05 +02:00
i965: Use %x instead of %u in debug print.
I mistakenly printed out the address as 0x<decimal number> instead of printing a proper hex number. This was...surprising.
This commit is contained in:
parent
b5f92b6fd4
commit
a3782a612f
1 changed files with 1 additions and 1 deletions
|
|
@ -64,7 +64,7 @@ dump_validation_list(struct intel_batchbuffer *batch)
|
|||
uint64_t flags = batch->validation_list[i].flags;
|
||||
assert(batch->validation_list[i].handle ==
|
||||
batch->exec_bos[i]->gem_handle);
|
||||
fprintf(stderr, "[%2d]: %2d %-14s %p %s%-7s @ 0x%016llu%s (%"PRIu64"B)\n",
|
||||
fprintf(stderr, "[%2d]: %2d %-14s %p %s%-7s @ 0x%016llx%s (%"PRIu64"B)\n",
|
||||
i,
|
||||
batch->validation_list[i].handle,
|
||||
batch->exec_bos[i]->name,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue