Commit 082c647e authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent e3d02807
...@@ -2433,7 +2433,7 @@ HRESULT WINAPI PathMatchSpecExA(const char *path, const char *mask, DWORD flags) ...@@ -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)); TRACE("%s, %s\n", wine_dbgstr_a(path), wine_dbgstr_a(mask));
if (flags) if (flags)
FIXME("Ignoring flags %#lx.", flags); FIXME("Ignoring flags %#lx.\n", flags);
if (!lstrcmpA(mask, "*.*")) if (!lstrcmpA(mask, "*.*"))
return S_OK; /* Matches every path */ return S_OK; /* Matches every path */
...@@ -2488,7 +2488,7 @@ HRESULT WINAPI PathMatchSpecExW(const WCHAR *path, const WCHAR *mask, DWORD flag ...@@ -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)); TRACE("%s, %s\n", wine_dbgstr_w(path), wine_dbgstr_w(mask));
if (flags) if (flags)
FIXME("Ignoring flags %#lx.", flags); FIXME("Ignoring flags %#lx.\n", flags);
if (!lstrcmpW(mask, L"*.*")) if (!lstrcmpW(mask, L"*.*"))
return S_OK; /* Matches every path */ return S_OK; /* Matches every path */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment