Module: wine Branch: master Commit: 121f20453bf18cbf274a0563e912e92e86bb9264 URL: https://source.winehq.org/git/wine.git/?a=commit;h=121f20453bf18cbf274a0563e...
Author: Michael Stefaniuc mstefani@winehq.org Date: Sun Apr 1 22:20:50 2018 +0200
winex11.drv: Print a debugstr and not the pointer to it.
Signed-off-by: Michael Stefaniuc mstefani@winehq.org Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/winex11.drv/vulkan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/winex11.drv/vulkan.c b/dlls/winex11.drv/vulkan.c index f881b0f..c2c1c6a 100644 --- a/dlls/winex11.drv/vulkan.c +++ b/dlls/winex11.drv/vulkan.c @@ -335,7 +335,7 @@ static VkResult X11DRV_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)