mirror of
https://github.com/reactos/reactos.git
synced 2025-08-01 23:32:59 +00:00
[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:
parent
fb48381cb4
commit
7d6bda16c6
22 changed files with 28 additions and 27 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue