Skip to content

Commit

Permalink
Fix handle ID format strings
Browse files Browse the repository at this point in the history
  • Loading branch information
mikes-lunarg committed Jan 20, 2025
1 parent 4996b5a commit 9bdad3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions framework/encode/vulkan_handle_wrapper_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ void CreateWrappedDispatchHandle(typename ParentWrapper::HandleType parent,
{
auto existing_wrapper = state_handle_table_.GetWrapper<Wrapper>(wrapper->handle);
GFXRECON_LOG_WARNING("Cannot add duplicate entry to VulkanStateHandleTable for handle 0x%" PRIx64
" with ID %d. This handle is already wrapped with ID %d.",
" with ID %" PRIu64 ". This handle is already wrapped with ID %" PRIu64 ".",
wrapper->handle,
wrapper->handle_id,
existing_wrapper->handle_id);
Expand All @@ -224,7 +224,7 @@ void CreateWrappedNonDispatchHandle(typename Wrapper::HandleType* handle, PFN_Ge
{
auto existing_wrapper = state_handle_table_.GetWrapper<Wrapper>(wrapper->handle);
GFXRECON_LOG_WARNING("Cannot add duplicate entry to VulkanStateHandleTable for handle 0x%" PRIx64
" with ID %d. This handle is already wrapped with ID %d.",
" with ID %" PRIu64 ". This handle is already wrapped with ID %" PRIu64 ".",
wrapper->handle,
wrapper->handle_id,
existing_wrapper->handle_id);
Expand Down

0 comments on commit 9bdad3d

Please sign in to comment.