Commit 0be7d7fa authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent 13aa0c04
......@@ -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 );
......
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