[vkd3d] vkd3d: Add a trailing linefeed to a couple of WARN() messages.

Francois Gouget fgouget at free.fr
Mon Mar 7 08:37:24 CST 2022


Signed-off-by: Francois Gouget <fgouget at free.fr>
---
 libs/vkd3d/state.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libs/vkd3d/state.c b/libs/vkd3d/state.c
index 2d3954d2..0e7800a4 100644
--- a/libs/vkd3d/state.c
+++ b/libs/vkd3d/state.c
@@ -1862,7 +1862,7 @@ static HRESULT vkd3d_create_compute_pipeline(struct d3d12_device *device,
     VK_CALL(vkDestroyShaderModule(device->vk_device, pipeline_info.stage.module, NULL));
     if (vr < 0)
     {
-        WARN("Failed to create Vulkan compute pipeline, hr %#x.", hr);
+        WARN("Failed to create Vulkan compute pipeline, hr %#x.\n", hr);
         return hresult_from_vk_result(vr);
     }
 
@@ -2664,7 +2664,7 @@ static HRESULT d3d12_pipeline_state_init_graphics(struct d3d12_pipeline_state *s
         }
         if (rt_desc->BlendEnable && rt_desc->LogicOpEnable)
         {
-            WARN("Only one of BlendEnable or LogicOpEnable can be set to TRUE.");
+            WARN("Only one of BlendEnable or LogicOpEnable can be set to TRUE.\n");
             hr = E_INVALIDARG;
             goto fail;
         }
-- 
2.30.2



More information about the wine-devel mailing list