[Mesa-dev] [PATCH] intel/tools: Add 0x in front of a couple of hex values

Lionel Landwerlin lionel.g.landwerlin at intel.com
Sat Aug 25 22:48:37 UTC 2018


Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin at intel.com>

On 25/08/2018 23:34, Jason Ekstrand wrote:
> ---
>   src/intel/common/gen_batch_decoder.c | 4 ++--
>   1 file 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));
>      }
>   }




More information about the mesa-dev mailing list