vkd3d: Use debugstr_hresult() in vkd3d_join_thread().

This commit is contained in:
Henri Verbeet 2024-01-17 18:06:18 +01:00 committed by Alexandre Julliard
parent e965701776
commit d4b329e628
Notes: Alexandre Julliard 2024-01-23 23:05:25 +01:00
Approved-by: Alexandre Julliard (@julliard)
Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/593

View File

@ -4582,7 +4582,7 @@ HRESULT vkd3d_join_thread(struct vkd3d_instance *instance, union vkd3d_thread_ha
if (instance->join_thread)
{
if (FAILED(hr = instance->join_thread(thread->handle)))
ERR("Failed to join thread, hr %#x.\n", hr);
ERR("Failed to join thread, hr %s.\n", debugstr_hresult(hr));
}
else
{