Remove a ";" after an if (), that makes no sense and caused GetNt4SoundDeviceCapabilities to always return without doing anything.

svn path=/trunk/; revision=47494
This commit is contained in:
Timo Kreuzer 2010-05-31 14:11:10 +00:00
parent aa42ebb18f
commit f9639de590

View 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 */