[SYSAUDIO]
authorChristoph von Wittich <christoph_vw@reactos.org>
Mon, 12 Oct 2009 21:06:21 +0000 (21:06 +0000)
committerChristoph von Wittich <christoph_vw@reactos.org>
Mon, 12 Oct 2009 21:06:21 +0000 (21:06 +0000)
-pass the correct amount of parameters to DPRINT

svn path=/trunk/; revision=43418

reactos/drivers/wdm/audio/sysaudio/pin.c

index 07ef1b3..ef1a4df 100644 (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);