mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 18:15:58 +00:00
[MMENT4]
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:
parent
aa42ebb18f
commit
f9639de590
1 changed files with 1 additions and 1 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue