aboutsummaryrefslogtreecommitdiff
path: root/layers
diff options
context:
space:
mode:
authorDominik Witczak <Dominik.Witczak@amd.com>2016-03-15 11:48:25 +0100
committerTobin Ehlis <tobine@google.com>2016-03-15 07:46:04 -0600
commit4123a35a8453000cddf379fb0b166d2dcd5974e2 (patch)
tree4569ce5eca77ac017be173060e02355761c7883b /layers
parent152e1acc0bcb741e0272ff939c86b9cdf5c2768a (diff)
downloadusermoji-4123a35a8453000cddf379fb0b166d2dcd5974e2.tar.xz
layers: GH132 Event handle should be printed as a hexadecimal value
Diffstat (limited to 'layers')
-rw-r--r--layers/draw_state.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/layers/draw_state.cpp b/layers/draw_state.cpp
index 6dca5c5b..503d4207 100644
--- a/layers/draw_state.cpp
+++ b/layers/draw_state.cpp
@@ -4480,7 +4480,7 @@ VK_LAYER_EXPORT VKAPI_ATTR void VKAPI_CALL vkDestroyEvent(VkDevice device, VkEve
skip_call |= log_msg(
dev_data->report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT,
reinterpret_cast<uint64_t &>(event), __LINE__, DRAWSTATE_INVALID_EVENT, "DS",
- "Cannot delete event %" PRIu64 " which is in use by a command buffer.", reinterpret_cast<uint64_t &>(event));
+ "Cannot delete event %" PRIx64 " which is in use by a command buffer.", reinterpret_cast<uint64_t &>(event));
}
dev_data->eventMap.erase(event_data);
}