mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-28 08:10:09 +01:00
anv: fix format string in error message
Fixes: 9775894f10 ("anv: Move size check from anv_bo_cache_import() to caller (v2)")
Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
This commit is contained in:
parent
1667360f7d
commit
7abf65aedc
1 changed files with 1 additions and 1 deletions
|
|
@ -89,7 +89,7 @@ VkResult anv_CreateDmaBufImageINTEL(
|
|||
result = vk_errorf(device->instance, device,
|
||||
VK_ERROR_INVALID_EXTERNAL_HANDLE,
|
||||
"dma-buf too small for image in "
|
||||
"vkCreateDmaBufImageINTEL: %"PRIu64"B < "PRIu64"B",
|
||||
"vkCreateDmaBufImageINTEL: %"PRIu64"B < %"PRIu64"B",
|
||||
mem->bo->size, aligned_image_size);
|
||||
anv_bo_cache_release(device, &device->bo_cache, mem->bo);
|
||||
goto fail_import;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue