diff options
| author | Dominik Witczak <Dominik.Witczak@amd.com> | 2016-03-15 11:48:25 +0100 |
|---|---|---|
| committer | Tobin Ehlis <tobine@google.com> | 2016-03-15 07:46:04 -0600 |
| commit | 4123a35a8453000cddf379fb0b166d2dcd5974e2 (patch) | |
| tree | 4569ce5eca77ac017be173060e02355761c7883b /layers/draw_state.cpp | |
| parent | 152e1acc0bcb741e0272ff939c86b9cdf5c2768a (diff) | |
| download | usermoji-4123a35a8453000cddf379fb0b166d2dcd5974e2.tar.xz | |
layers: GH132 Event handle should be printed as a hexadecimal value
Diffstat (limited to 'layers/draw_state.cpp')
| -rw-r--r-- | layers/draw_state.cpp | 2 |
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); } |
