mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 06:26:00 +00:00
[REACTOS] Add '\n' to debug logs
on TRACE, WARN, FIXME and ERR calls. Plus a few nit picks.
This commit is contained in:
parent
079131faca
commit
03422451b3
40 changed files with 52 additions and 52 deletions
|
@ -2726,7 +2726,7 @@ QueryColorProfile(
|
|||
{
|
||||
if (!IsValidDevmodeNoSizeW( pdevmode ) )
|
||||
{
|
||||
ERR("DeviceCapabilitiesW : Devode Invalid");
|
||||
ERR("QueryColorProfile : Devode Invalid\n");
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue