-fix some format strings

svn path=/trunk/; revision=27513
This commit is contained in:
Christoph von Wittich 2007-07-08 19:44:11 +00:00
parent 7b99b108be
commit c57c69624e
2 changed files with 2 additions and 2 deletions

View file

@ -151,7 +151,7 @@ PcAddAdapterDevice(
if ( ! NT_SUCCESS(status) )
{
DPRINT("IoCreateDevice() failed with status 0x$08lx\n", status);
DPRINT("IoCreateDevice() failed with status 0x%08lx\n", status);
return status;
}

View file

@ -113,7 +113,7 @@ PortClsPnp(
ASSERT(portcls_ext->StartDevice);
/* 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);
if ( ! NT_SUCCESS(status) )