From: Francois Gouget Date: Mon, 7 Apr 2008 09:03:01 +0000 (+0200) Subject: services: Add a trailing '\n' to a couple of Wine traces. X-Git-Tag: wine-0.9.60~489 X-Git-Url: http://git.etersoft.ru/projects/?a=commitdiff_plain;h=1aa72f7e47607e6c553dcb4064cc16475ab0574b;p=wine%2Feterwine.git services: Add a trailing '\n' to a couple of Wine traces. --- diff --git a/programs/services/rpc.c b/programs/services/rpc.c index 63ce0d7a7e..0adeb125a0 100644 --- a/programs/services/rpc.c +++ b/programs/services/rpc.c @@ -541,7 +541,7 @@ DWORD svcctl_ChangeServiceConfigW( if (!validate_service_config(&new_entry)) { - WINE_ERR("The configuration after the change wouldn't be valid"); + WINE_ERR("The configuration after the change wouldn't be valid\n"); service_unlock(service->service_entry); return ERROR_INVALID_PARAMETER; } @@ -1348,7 +1348,7 @@ DWORD RPC_MainLoop(void) if ((err = RpcServerRegisterIf(svcctl_v2_0_s_ifspec, 0, 0)) != ERROR_SUCCESS) { - WINE_ERR("RpcServerRegisterIf failed with error %u", err); + WINE_ERR("RpcServerRegisterIf failed with error %u\n", err); return err; }