From 81e7ecfa80b2f3890b1836500ccfabe24a061dbe Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Sun, 22 Jul 2018 12:35:13 +0200 Subject: [PATCH] winemac.drv: Print the debug string and not the pointer to it. Signed-off-by: Michael Stefaniuc Signed-off-by: Ken Thomases Signed-off-by: Alexandre Julliard --- dlls/winemac.drv/vulkan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winemac.drv/vulkan.c b/dlls/winemac.drv/vulkan.c index b1211dff544..d49c9a1ab2f 100644 --- a/dlls/winemac.drv/vulkan.c +++ b/dlls/winemac.drv/vulkan.c @@ -342,7 +342,7 @@ static VkResult macdrv_vkEnumerateInstanceExtensionProperties(const char *layer_ unsigned int i; VkResult res; - TRACE("layer_name %p, count %p, properties %p\n", debugstr_a(layer_name), count, properties); + TRACE("layer_name %s, count %p, properties %p\n", debugstr_a(layer_name), count, properties); /* This shouldn't get called with layer_name set, the ICD loader prevents it. */ if (layer_name)