[MMENT4]
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Mon, 31 May 2010 14:11:10 +0000 (14:11 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Mon, 31 May 2010 14:11:10 +0000 (14:11 +0000)
Remove a ";" after an if (), that makes no sense and caused GetNt4SoundDeviceCapabilities to always return without doing anything.

svn path=/trunk/; revision=47494

reactos/lib/drivers/sound/mment4/control.c

index 87a9a4f..7d8b437 100644 (file)
@@ -101,7 +101,7 @@ GetNt4SoundDeviceCapabilities(
     Result = GetSoundDeviceType(SoundDevice, &DeviceType);
     SND_ASSERT( Result == MMSYSERR_NOERROR );
 
-    if ( ! MMSUCCESS(Result) );
+    if ( ! MMSUCCESS(Result) )
         return TranslateInternalMmResult(Result);
 
     /* Choose the appropriate IOCTL */