wineboot-drivers_etc_Stubs: Add a missing \n to an ERR message.

This commit is contained in:
Sebastian Lackner 2015-05-25 05:50:39 +02:00
parent 41484ad4ed
commit 7f9bf47dd0

View File

@ -46,7 +46,7 @@ index a20b4e1..b2cc0a9 100644
+ file = CreateFileW( path, GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE,
+ NULL, CREATE_NEW, FILE_ATTRIBUTE_NORMAL, NULL );
+ if (file == INVALID_HANDLE_VALUE)
+ WINE_ERR( "wine: failed to create %s.", wine_dbgstr_w(path) );
+ WINE_ERR( "wine: failed to create %s.\n", wine_dbgstr_w(path) );
+ else
+ CloseHandle( file );
+ }