From b8ab2e557c74fcd695eb0542a9995d34aafb22c4 Mon Sep 17 00:00:00 2001 From: Johannes Anderwald Date: Mon, 20 Apr 2009 14:14:07 +0000 Subject: [PATCH] - Rename function to fix linking errors on x64 svn path=/trunk/; revision=40607 --- reactos/drivers/wdm/audio/legacy/wdmaud/control.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/drivers/wdm/audio/legacy/wdmaud/control.c b/reactos/drivers/wdm/audio/legacy/wdmaud/control.c index de9b0cf88dc..4bfceadce74 100644 --- a/reactos/drivers/wdm/audio/legacy/wdmaud/control.c +++ b/reactos/drivers/wdm/audio/legacy/wdmaud/control.c @@ -556,7 +556,7 @@ WdmAudCapabilities( NTSTATUS NTAPI -WdmAudClose( +WdmAudIoctlClose( IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp, IN PWDMAUD_DEVICE_INFO DeviceInfo, @@ -630,7 +630,7 @@ WdmAudDeviceControl( 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: