Author: cwittich Date: Sun Jul 8 23:44:11 2007 New Revision: 27513
URL: http://svn.reactos.org/svn/reactos?rev=27513&view=rev Log: -fix some format strings
Modified: trunk/reactos/drivers/wdm/audio/backpln/portcls/adapter.c trunk/reactos/drivers/wdm/audio/backpln/portcls/irp.c
Modified: trunk/reactos/drivers/wdm/audio/backpln/portcls/adapter.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/wdm/audio/backpln/p... ============================================================================== --- trunk/reactos/drivers/wdm/audio/backpln/portcls/adapter.c (original) +++ trunk/reactos/drivers/wdm/audio/backpln/portcls/adapter.c Sun Jul 8 23:44:11 2007 @@ -151,7 +151,7 @@
if ( ! NT_SUCCESS(status) ) { - DPRINT("IoCreateDevice() failed with status 0x$08lx\n", status); + DPRINT("IoCreateDevice() failed with status 0x%08lx\n", status); return status; }
Modified: trunk/reactos/drivers/wdm/audio/backpln/portcls/irp.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/wdm/audio/backpln/p... ============================================================================== --- trunk/reactos/drivers/wdm/audio/backpln/portcls/irp.c (original) +++ trunk/reactos/drivers/wdm/audio/backpln/portcls/irp.c Sun Jul 8 23:44:11 2007 @@ -113,7 +113,7 @@ 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) )