Module: wine Branch: master Commit: c909e69fe4e5465273b9d91ea046dfb208eeb15a URL: https://source.winehq.org/git/wine.git/?a=commit;h=c909e69fe4e5465273b9d91ea... Author: Francois Gouget <fgouget(a)free.fr> Date: Fri Aug 6 12:52:39 2021 +0200 ws2_32: Add a trailing linefeed to a FIXME(). Signed-off-by: Francois Gouget <fgouget(a)free.fr> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/ws2_32/unixlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ws2_32/unixlib.c b/dlls/ws2_32/unixlib.c index 21a6e4b27c2..eb5b3daf401 100644 --- a/dlls/ws2_32/unixlib.c +++ b/dlls/ws2_32/unixlib.c @@ -383,7 +383,7 @@ static unsigned int errno_from_unix( int err ) case EREMOTE: return WSAEREMOTE; #endif default: - FIXME( "unknown error: %s", strerror( err ) ); + FIXME( "unknown error: %s\n", strerror( err ) ); return WSAEFAULT; } }