services: Add a trailing '\n' to a couple of Wine traces.
This commit is contained in:
parent
7d95c210c8
commit
1aa72f7e47
|
@ -541,7 +541,7 @@ DWORD svcctl_ChangeServiceConfigW(
|
||||||
|
|
||||||
if (!validate_service_config(&new_entry))
|
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);
|
service_unlock(service->service_entry);
|
||||||
return ERROR_INVALID_PARAMETER;
|
return ERROR_INVALID_PARAMETER;
|
||||||
}
|
}
|
||||||
|
@ -1348,7 +1348,7 @@ DWORD RPC_MainLoop(void)
|
||||||
|
|
||||||
if ((err = RpcServerRegisterIf(svcctl_v2_0_s_ifspec, 0, 0)) != ERROR_SUCCESS)
|
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;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue