[PATCH] kernelbase: Add a trailing linefeed to a couple of FIXME() messages.

Francois Gouget fgouget at free.fr
Tue Mar 15 09:53:48 CDT 2022


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

diff --git a/dlls/kernelbase/path.c b/dlls/kernelbase/path.c
index d59f20adb6e..410d87ce620 100644
--- a/dlls/kernelbase/path.c
+++ b/dlls/kernelbase/path.c
@@ -2433,7 +2433,7 @@ HRESULT WINAPI PathMatchSpecExA(const char *path, const char *mask, DWORD flags)
     TRACE("%s, %s\n", wine_dbgstr_a(path), wine_dbgstr_a(mask));
 
     if (flags)
-        FIXME("Ignoring flags %#lx.", flags);
+        FIXME("Ignoring flags %#lx.\n", flags);
 
     if (!lstrcmpA(mask, "*.*"))
         return S_OK; /* Matches every path */
@@ -2488,7 +2488,7 @@ HRESULT WINAPI PathMatchSpecExW(const WCHAR *path, const WCHAR *mask, DWORD flag
     TRACE("%s, %s\n", wine_dbgstr_w(path), wine_dbgstr_w(mask));
 
     if (flags)
-        FIXME("Ignoring flags %#lx.", flags);
+        FIXME("Ignoring flags %#lx.\n", flags);
 
     if (!lstrcmpW(mask, L"*.*"))
         return S_OK; /* Matches every path */
-- 
2.30.2



More information about the wine-devel mailing list