Module: wine Branch: master Commit: 0007925e8f2b83a1149aa3469cb2606b2199cb9e URL: https://gitlab.winehq.org/wine/wine/-/commit/0007925e8f2b83a1149aa3469cb2606...
Author: Francois Gouget fgouget@codeweavers.com Date: Thu Mar 16 14:37:30 2023 +0100
wofutil: Add a trailing linefeed to a FIXME().
---
dlls/wofutil/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/wofutil/main.c b/dlls/wofutil/main.c index d8c891aa30c..edb5fec5dee 100644 --- a/dlls/wofutil/main.c +++ b/dlls/wofutil/main.c @@ -25,7 +25,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(wofutil);
HRESULT WINAPI WofIsExternalFile( const WCHAR *path, BOOL *result, ULONG *provider, void *ptr, ULONG *length ) { - FIXME( "%s, %p, %p, %p, %p", debugstr_w(path), result, provider, ptr, length ); + FIXME( "%s, %p, %p, %p, %p\n", debugstr_w(path), result, provider, ptr, length ); if (result) *result = FALSE; if (provider) *provider = 0; if (length) *length = 0;