[REACTOS] Add '\n' to debug logs

on TRACE, WARN, FIXME and ERR calls.

Plus a few nit picks.
This commit is contained in:
Serge Gautherie 2022-05-02 14:26:10 +02:00 committed by Stanislav Motylkov
parent 079131faca
commit 03422451b3
40 changed files with 52 additions and 52 deletions

View file

@ -2726,7 +2726,7 @@ QueryColorProfile(
{
if (!IsValidDevmodeNoSizeW( pdevmode ) )
{
ERR("DeviceCapabilitiesW : Devode Invalid");
ERR("QueryColorProfile : Devode Invalid\n");
return FALSE;
}
}

View file

@ -266,7 +266,7 @@ _CreateNonspooledPort(PLOCALMON_PORT pPort)
if (!*p)
{
// We reached the end of the list without finding a mapping.
ERR("Can't find a suitable mapping for the port \"%S\"!", pPort->pwszPortName);
ERR("Can't find a suitable mapping for the port \"%S\"!\n", pPort->pwszPortName);
goto Cleanup;
}

View file

@ -1219,7 +1219,7 @@ _LocalOpenPrinterHandle(PWSTR pwszPrinterName, PWSTR pwszJobParameter, PHANDLE p
if (pPrinterHandle->hSPLFile == INVALID_HANDLE_VALUE)
{
dwErrorCode = GetLastError();
ERR("CreateFileW failed with error %lu for \"%S\"!", dwErrorCode, wszFullPath);
ERR("CreateFileW failed with error %lu for \"%S\"!\n", dwErrorCode, wszFullPath);
goto Failure;
}