[SYSAUDIO]

-pass the correct amount of parameters to DPRINT

svn path=/trunk/; revision=43418
This commit is contained in:
Christoph von Wittich 2009-10-12 21:06:21 +00:00
parent 750be30cc9
commit b4053fedd1

View file

@ -20,7 +20,7 @@ Pin_fnDeviceIoControl(
PFILE_OBJECT FileObject;
PIO_STACK_LOCATION IoStack;
DPRINT("Pin_fnDeviceIoControl called DeviceObject %p Irp %p\n", DeviceObject);
DPRINT("Pin_fnDeviceIoControl called DeviceObject %p Irp %p\n", DeviceObject, Irp);
/* Get current stack location */
IoStack = IoGetCurrentIrpStackLocation(Irp);
@ -136,7 +136,7 @@ Pin_fnClose(
PDISPATCH_CONTEXT Context;
PIO_STACK_LOCATION IoStack;
DPRINT("Pin_fnClose called DeviceObject %p Irp %p\n", DeviceObject);
DPRINT("Pin_fnClose called DeviceObject %p Irp %p\n", DeviceObject, Irp);
/* Get current stack location */
IoStack = IoGetCurrentIrpStackLocation(Irp);