mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
-fix some format strings
svn path=/trunk/; revision=27513
This commit is contained in:
parent
7b99b108be
commit
c57c69624e
2 changed files with 2 additions and 2 deletions
|
@ -151,7 +151,7 @@ PcAddAdapterDevice(
|
||||||
|
|
||||||
if ( ! NT_SUCCESS(status) )
|
if ( ! NT_SUCCESS(status) )
|
||||||
{
|
{
|
||||||
DPRINT("IoCreateDevice() failed with status 0x$08lx\n", status);
|
DPRINT("IoCreateDevice() failed with status 0x%08lx\n", status);
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -113,7 +113,7 @@ PortClsPnp(
|
||||||
ASSERT(portcls_ext->StartDevice);
|
ASSERT(portcls_ext->StartDevice);
|
||||||
|
|
||||||
/* Call the StartDevice routine */
|
/* Call the StartDevice routine */
|
||||||
DPRINT("Calling StartDevice at 0x%8x\n", portcls_ext->StartDevice);
|
DPRINT("Calling StartDevice at 0x%8p\n", portcls_ext->StartDevice);
|
||||||
status = portcls_ext->StartDevice(DeviceObject, Irp, resource_list);
|
status = portcls_ext->StartDevice(DeviceObject, Irp, resource_list);
|
||||||
|
|
||||||
if ( ! NT_SUCCESS(status) )
|
if ( ! NT_SUCCESS(status) )
|
||||||
|
|
Loading…
Reference in a new issue