diff options
author | Jason Ekstrand <[email protected]> | 2018-08-25 17:34:17 -0500 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2018-08-25 18:47:08 -0500 |
commit | aad501f15e22a96be40c789074a3a1b9518fa70d (patch) | |
tree | bd6601e6a9aee36ef16da1e33d4574163f1e6cf6 | |
parent | 76b0e4d8c9d3cd8af0b665cec88bded7a61e8ad6 (diff) |
intel/tools: Add 0x in front of a couple of hex values
Reviewed-by: Lionel Landwerlin <[email protected]>
-rw-r--r-- | src/intel/common/gen_batch_decoder.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/intel/common/gen_batch_decoder.c b/src/intel/common/gen_batch_decoder.c index 6884a999401..1a5c8c37968 100644 --- a/src/intel/common/gen_batch_decoder.c +++ b/src/intel/common/gen_batch_decoder.c @@ -248,11 +248,11 @@ dump_binding_table(struct gen_batch_decode_ctx *ctx, uint32_t offset, int count) if (pointers[i] % 32 != 0 || addr < bo.addr || addr + size >= bo.addr + bo.size) { - fprintf(ctx->fp, "pointer %u: %08x <not valid>\n", i, pointers[i]); + fprintf(ctx->fp, "pointer %u: 0x%08x <not valid>\n", i, pointers[i]); continue; } - fprintf(ctx->fp, "pointer %u: %08x\n", i, pointers[i]); + fprintf(ctx->fp, "pointer %u: 0x%08x\n", i, pointers[i]); ctx_print_group(ctx, strct, addr, bo.map + (addr - bo.addr)); } } |