ntoskrnl.exe: Add a trailing '\n' to a FIXME() message.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Francois Gouget 2016-07-29 12:55:12 +02:00 committed by Alexandre Julliard
parent 13aa0c0419
commit 0be7d7fad8
1 changed files with 1 additions and 1 deletions

View File

@ -838,7 +838,7 @@ static void build_driver_keypath( const WCHAR *name, UNICODE_STRING *keypath )
if (strncmpW( name, driverW, strlenW(driverW) ) == 0)
name += strlenW(driverW);
else
FIXME( "Driver name %s does not properly begin with \\Driver\\", debugstr_w(name) );
FIXME( "Driver name %s does not properly begin with \\Driver\\\n", debugstr_w(name) );
str = HeapAlloc( GetProcessHeap(), 0, sizeof(servicesW) + strlenW(name)*sizeof(WCHAR));
lstrcpyW( str, servicesW );