From: Christopher Snowhill Date: Sat, 6 May 2023 04:45:45 +0000 (-0700) Subject: Corrects log print to produce hexadecimal base output X-Git-Tag: upstream/23.3.3~9031 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a6d4139e59bf0aab66f09b321d1690d28c50a67f;p=platform%2Fupstream%2Fmesa.git Corrects log print to produce hexadecimal base output Matching the original %016lx, and the "0x" prefix which is still in the format string. Fixes: 53b77a8102cd ("anv: remove 48bit address space checks") Signed-off-by: Christopher Snowhill Reviewed-by: Lionel Landwerlin Part-of: --- diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 653714d..63491488 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -1314,7 +1314,7 @@ anv_physical_device_try_create(struct vk_instance *vk_instance, if (device->gtt_size < (4ULL << 30 /* GiB */)) { vk_errorf(instance, VK_ERROR_INCOMPATIBLE_DRIVER, - "GTT size too small: 0x%016"PRIu64, device->gtt_size); + "GTT size too small: 0x%016"PRIx64, device->gtt_size); goto fail_base; }