mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[MMEBUDDY][MMENT4][SNDBLST] Add missing \n to SND_*() calls (#7224)
This commit is contained in:
parent
ea60890961
commit
ea291af409
4 changed files with 5 additions and 5 deletions
|
@ -224,7 +224,7 @@ DriverProc(
|
||||||
|
|
||||||
case DRV_QUERYCONFIGURE :
|
case DRV_QUERYCONFIGURE :
|
||||||
{
|
{
|
||||||
SND_TRACE(L"DRV_QUERYCONFIGURE");
|
SND_TRACE(L"DRV_QUERYCONFIGURE\n");
|
||||||
return 0L;
|
return 0L;
|
||||||
}
|
}
|
||||||
case DRV_CONFIGURE :
|
case DRV_CONFIGURE :
|
||||||
|
|
|
@ -51,7 +51,7 @@ FreeSoundDevice(
|
||||||
{
|
{
|
||||||
SND_ASSERT( SoundDevice );
|
SND_ASSERT( SoundDevice );
|
||||||
|
|
||||||
SND_TRACE(L"Freeing a SOUND_DEVICE structure");
|
SND_TRACE(L"Freeing a SOUND_DEVICE structure\n");
|
||||||
|
|
||||||
/* For safety the whole struct gets zeroed */
|
/* For safety the whole struct gets zeroed */
|
||||||
ZeroMemory(SoundDevice, sizeof(SOUND_DEVICE));
|
ZeroMemory(SoundDevice, sizeof(SOUND_DEVICE));
|
||||||
|
|
|
@ -142,7 +142,7 @@ MmeOpenDevice(
|
||||||
PSOUND_DEVICE_INSTANCE SoundDeviceInstance;
|
PSOUND_DEVICE_INSTANCE SoundDeviceInstance;
|
||||||
LPWAVEFORMATEX Format = NULL;
|
LPWAVEFORMATEX Format = NULL;
|
||||||
|
|
||||||
SND_TRACE(L"Opening device");
|
SND_TRACE(L"Opening device\n");
|
||||||
|
|
||||||
VALIDATE_MMSYS_PARAMETER( IS_WAVE_DEVICE_TYPE(DeviceType) || IS_MIXER_DEVICE_TYPE(DeviceType) || IS_MIDI_DEVICE_TYPE(DeviceType) ); /* FIXME? wave in too? */
|
VALIDATE_MMSYS_PARAMETER( IS_WAVE_DEVICE_TYPE(DeviceType) || IS_MIXER_DEVICE_TYPE(DeviceType) || IS_MIDI_DEVICE_TYPE(DeviceType) ); /* FIXME? wave in too? */
|
||||||
VALIDATE_MMSYS_PARAMETER( OpenParameters );
|
VALIDATE_MMSYS_PARAMETER( OpenParameters );
|
||||||
|
|
|
@ -33,7 +33,7 @@ OpenNt4KernelSoundDevice(
|
||||||
Result = GetSoundDeviceIdentifier(SoundDevice, (PVOID*) &Path);
|
Result = GetSoundDeviceIdentifier(SoundDevice, (PVOID*) &Path);
|
||||||
if ( ! MMSUCCESS(Result) )
|
if ( ! MMSUCCESS(Result) )
|
||||||
{
|
{
|
||||||
SND_ERR(L"Unable to get sound device path");
|
SND_ERR(L"Unable to get sound device path\n");
|
||||||
return TranslateInternalMmResult(Result);
|
return TranslateInternalMmResult(Result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -122,7 +122,7 @@ GetNt4SoundDeviceCapabilities(
|
||||||
|
|
||||||
if ( ! MMSUCCESS(Result) )
|
if ( ! MMSUCCESS(Result) )
|
||||||
{
|
{
|
||||||
SND_ERR(L"Failed to open device");
|
SND_ERR(L"Failed to open device\n");
|
||||||
return TranslateInternalMmResult(Result);
|
return TranslateInternalMmResult(Result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue