[REACTOS] Improve how some ASSERTMSG() message values are printed: enforce ending "\n".

NB: Not touching calls in "third-party" code: class and classpnp.
This commit is contained in:
Serge Gautherie 2018-07-04 03:42:04 +02:00 committed by Hermès Bélusca-Maïto
parent fb48381cb4
commit 7d6bda16c6
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0
22 changed files with 28 additions and 27 deletions

View file

@ -1128,7 +1128,7 @@ PciSkipThisFunction(IN PPCI_COMMON_HEADER PciData,
else
{
/* Logic error in the driver */
ASSERTMSG("PCI Skip Function - Operation type unknown.", FALSE);
ASSERTMSG("PCI Skip Function - Operation type unknown.\n", FALSE);
}
/* Check for legacy bridges during resource enumeration */
@ -2172,7 +2172,7 @@ PciSetResources(IN PPCI_PDO_EXTENSION PdoExtension,
if (!PcipIsSameDevice(PdoExtension, &PciData))
{
/* Fail */
ASSERTMSG("PCI Set resources - not same device", FALSE);
ASSERTMSG("PCI Set resources - not same device.\n", FALSE);
return STATUS_DEVICE_DOES_NOT_EXIST;
}