layers: GH132 Event handle should be printed as a hexadecimal value
authorDominik Witczak <Dominik.Witczak@amd.com>
Tue, 15 Mar 2016 10:48:25 +0000 (11:48 +0100)
committerTobin Ehlis <tobine@google.com>
Tue, 15 Mar 2016 13:46:04 +0000 (07:46 -0600)
layers/draw_state.cpp

index 6dca5c5b3295c7798dfc18095b01f4b4300a7d55..503d4207ee957672e9300b27cd4134831e74c3bd 100644 (file)
@@ -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);
     }