From 7f9bf47dd074922e95a724fe5183bb3bc938ed55 Mon Sep 17 00:00:00 2001 From: Sebastian Lackner Date: Mon, 25 May 2015 05:50:39 +0200 Subject: [PATCH] wineboot-drivers_etc_Stubs: Add a missing \n to an ERR message. --- ...1-wineboot-Init-system32-drivers-etc-host-networks-pro.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/wineboot-drivers_etc_Stubs/0001-wineboot-Init-system32-drivers-etc-host-networks-pro.patch b/patches/wineboot-drivers_etc_Stubs/0001-wineboot-Init-system32-drivers-etc-host-networks-pro.patch index 5cdb0fdc..baacb52d 100644 --- a/patches/wineboot-drivers_etc_Stubs/0001-wineboot-Init-system32-drivers-etc-host-networks-pro.patch +++ b/patches/wineboot-drivers_etc_Stubs/0001-wineboot-Init-system32-drivers-etc-host-networks-pro.patch @@ -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 ); + }