Author: janderwald
Date: Mon Apr 20 18:14:07 2009
New Revision: 40607

URL: http://svn.reactos.org/svn/reactos?rev=40607&view=rev
Log:
- Rename function to fix linking errors on x64

Modified:
    trunk/reactos/drivers/wdm/audio/legacy/wdmaud/control.c

Modified: trunk/reactos/drivers/wdm/audio/legacy/wdmaud/control.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/wdm/audio/legacy/wdmaud/control.c?rev=40607&r1=40606&r2=40607&view=diff
==============================================================================
--- trunk/reactos/drivers/wdm/audio/legacy/wdmaud/control.c [iso-8859-1] 
(original)
+++ trunk/reactos/drivers/wdm/audio/legacy/wdmaud/control.c [iso-8859-1] Mon 
Apr 20 18:14:07 2009
@@ -556,7 +556,7 @@
 
 NTSTATUS
 NTAPI
-WdmAudClose(
+WdmAudIoctlClose(
     IN  PDEVICE_OBJECT DeviceObject,
     IN  PIRP Irp,
     IN  PWDMAUD_DEVICE_INFO DeviceInfo,
@@ -630,7 +630,7 @@
         case IOCTL_GETCAPABILITIES:
             return WdmAudCapabilities(DeviceObject, Irp, DeviceInfo, 
ClientInfo);
         case IOCTL_CLOSE_WDMAUD:
-            return WdmAudClose(DeviceObject, Irp, DeviceInfo, ClientInfo);
+            return WdmAudIoctlClose(DeviceObject, Irp, DeviceInfo, ClientInfo);
         case IOCTL_GETDEVID:
         case IOCTL_GETVOLUME:
         case IOCTL_SETVOLUME:

Reply via email to