add missing \n in traces

svn path=/trunk/; revision=39713
This commit is contained in:
Sylvain Petreolle 2009-02-22 14:07:18 +00:00
parent e528cdb9d0
commit 3163354a38

View file

@ -53,7 +53,7 @@ DriverProc(
if ( KernelHandle == INVALID_HANDLE_VALUE )
{
SND_ERR(L"Failed to open %s", KERNEL_DEVICE_NAME);
SND_ERR(L"Failed to open %s\n", KERNEL_DEVICE_NAME);
CleanupEntrypointMutexes();
UnlistAllSoundDevices();
@ -103,7 +103,7 @@ DriverProc(
case DRV_QUERYCONFIGURE :
{
SND_TRACE(L"DRV_QUERYCONFIGURE");
SND_TRACE(L"DRV_QUERYCONFIGURE\n");
return 0L;
}
case DRV_CONFIGURE :