[ros-diffs] [tkreuzer] 47494: [MMENT4] Remove a "; " after an if (), that makes no sense and caused GetNt4SoundDeviceCapabilities to always return without doing anything.

tkreuzer at svn.reactos.org tkreuzer at svn.reactos.org
Mon May 31 16:11:11 CEST 2010


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/control.c?rev=47494&r1=47493&r2=47494&view=diff
==============================================================================
--- 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 */




More information about the Ros-diffs mailing list