mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 20:43:25 +00:00
Changed DbgPrint to DPRINT.
svn path=/trunk/; revision=21534
This commit is contained in:
parent
a477c01d94
commit
cf23410594
1 changed files with 2 additions and 2 deletions
|
@ -500,7 +500,7 @@ DiskClassCreateDeviceObject(IN PDRIVER_OBJECT DriverObject,
|
||||||
&ObjectAttributes);
|
&ObjectAttributes);
|
||||||
if (!NT_SUCCESS(Status))
|
if (!NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
DbgPrint("Could not create device dir object\n");
|
DPRINT("Could not create device dir object\n");
|
||||||
return(Status);
|
return(Status);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -511,7 +511,7 @@ DiskClassCreateDeviceObject(IN PDRIVER_OBJECT DriverObject,
|
||||||
&PortDeviceObject);
|
&PortDeviceObject);
|
||||||
if (!NT_SUCCESS(Status))
|
if (!NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
DbgPrint("Could not claim disk device\n");
|
DPRINT("Could not claim disk device\n");
|
||||||
|
|
||||||
ZwMakeTemporaryObject(Handle);
|
ZwMakeTemporaryObject(Handle);
|
||||||
ZwClose(Handle);
|
ZwClose(Handle);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue