mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[NTOS:PNP] Remove excessive error messages
This commit is contained in:
parent
1a6bd2704a
commit
fd9436d768
1 changed files with 4 additions and 1 deletions
|
@ -251,7 +251,10 @@ IopCreateDeviceInstancePath(
|
|||
Status = IopQueryDeviceCapabilities(DeviceNode, &DeviceCapabilities);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("IopQueryDeviceCapabilities() failed (Status 0x%08lx)\n", Status);
|
||||
if (Status != STATUS_NOT_SUPPORTED)
|
||||
{
|
||||
DPRINT1("IopQueryDeviceCapabilities() failed (Status 0x%08lx)\n", Status);
|
||||
}
|
||||
RtlFreeUnicodeString(&DeviceId);
|
||||
return Status;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue