[MMEBUDDY][MMENT4][SNDBLST] Add missing \n to SND_*() calls (#7224)

This commit is contained in:
Serge Gautherie 2024-08-09 20:50:51 +02:00 committed by GitHub
parent ea60890961
commit ea291af409
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 5 additions and 5 deletions

View file

@ -224,7 +224,7 @@ DriverProc(
case DRV_QUERYCONFIGURE :
{
SND_TRACE(L"DRV_QUERYCONFIGURE");
SND_TRACE(L"DRV_QUERYCONFIGURE\n");
return 0L;
}
case DRV_CONFIGURE :

View file

@ -51,7 +51,7 @@ FreeSoundDevice(
{
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 */
ZeroMemory(SoundDevice, sizeof(SOUND_DEVICE));

View file

@ -142,7 +142,7 @@ MmeOpenDevice(
PSOUND_DEVICE_INSTANCE SoundDeviceInstance;
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( OpenParameters );

View file

@ -33,7 +33,7 @@ OpenNt4KernelSoundDevice(
Result = GetSoundDeviceIdentifier(SoundDevice, (PVOID*) &Path);
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);
}
@ -122,7 +122,7 @@ GetNt4SoundDeviceCapabilities(
if ( ! MMSUCCESS(Result) )
{
SND_ERR(L"Failed to open device");
SND_ERR(L"Failed to open device\n");
return TranslateInternalMmResult(Result);
}