Author: tkreuzer
Date: Mon May 31 16:11:10 2010
New Revision: 47494
URL:
http://svn.reactos.org/svn/reactos?rev=47494&view=rev
Log:
[MMENT4]
Remove a ";" after an if (), that makes no sense and caused
GetNt4SoundDeviceCapabilities to always return without doing anything.
Modified:
trunk/reactos/lib/drivers/sound/mment4/control.c
Modified: trunk/reactos/lib/drivers/sound/mment4/control.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/drivers/sound/mment4/c…
==============================================================================
--- trunk/reactos/lib/drivers/sound/mment4/control.c [iso-8859-1] (original)
+++ trunk/reactos/lib/drivers/sound/mment4/control.c [iso-8859-1] Mon May 31 16:11:10
2010
@@ -101,7 +101,7 @@
Result = GetSoundDeviceType(SoundDevice, &DeviceType);
SND_ASSERT( Result == MMSYSERR_NOERROR );
- if ( ! MMSUCCESS(Result) );
+ if ( ! MMSUCCESS(Result) )
return TranslateInternalMmResult(Result);
/* Choose the appropriate IOCTL */