1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 03:45:57 +00:00

wofutil: Add a trailing linefeed to a FIXME().

This commit is contained in:
Francois Gouget 2023-03-16 14:37:30 +01:00 committed by Alexandre Julliard
parent 196295db88
commit 0007925e8f

View File

@ -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;