Francois Gouget : vkd3d: Fix the spelling of a couple of trace message.
Module: vkd3d Branch: master Commit: 419c746806969884b42ea770eb228f991725a4e4 URL: https://source.winehq.org/git/vkd3d.git/?a=commit;h=419c746806969884b42ea770... Author: Francois Gouget <fgouget(a)free.fr> Date: Mon Mar 7 15:37:39 2022 +0100 vkd3d: Fix the spelling of a couple of trace message. Signed-off-by: Francois Gouget <fgouget(a)free.fr> Signed-off-by: Henri Verbeet <hverbeet(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- libs/vkd3d/command.c | 2 +- libs/vkd3d/device.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/vkd3d/command.c b/libs/vkd3d/command.c index e7375fb8..f9b3389f 100644 --- a/libs/vkd3d/command.c +++ b/libs/vkd3d/command.c @@ -5982,7 +5982,7 @@ static void STDMETHODCALLTYPE d3d12_command_queue_SetMarker(ID3D12CommandQueue * static void STDMETHODCALLTYPE d3d12_command_queue_BeginEvent(ID3D12CommandQueue *iface, UINT metadata, const void *data, UINT size) { - FIXME("iface %p, metatdata %#x, data %p, size %u stub!\n", + FIXME("iface %p, metadata %#x, data %p, size %u stub!\n", iface, metadata, data, size); } diff --git a/libs/vkd3d/device.c b/libs/vkd3d/device.c index 59fa9af9..1ccd242a 100644 --- a/libs/vkd3d/device.c +++ b/libs/vkd3d/device.c @@ -3736,7 +3736,7 @@ static HRESULT STDMETHODCALLTYPE d3d12_device_CreateFence(ID3D12Device *iface, struct d3d12_fence *object; HRESULT hr; - TRACE("iface %p, intial_value %#"PRIx64", flags %#x, riid %s, fence %p.\n", + TRACE("iface %p, initial_value %#"PRIx64", flags %#x, riid %s, fence %p.\n", iface, initial_value, flags, debugstr_guid(riid), fence); if (FAILED(hr = d3d12_fence_create(device, initial_value, flags, &object)))
participants (1)
-
Alexandre Julliard