Author: spetreolle Date: Sun Feb 22 17:07:18 2009 New Revision: 39713
URL: http://svn.reactos.org/svn/reactos?rev=39713&view=rev Log: add missing \n in traces
Modified: trunk/reactos/dll/win32/wdmaud.drv/wdmaud.c
Modified: trunk/reactos/dll/win32/wdmaud.drv/wdmaud.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/wdmaud.drv/wdmaud... ============================================================================== --- trunk/reactos/dll/win32/wdmaud.drv/wdmaud.c [iso-8859-1] (original) +++ trunk/reactos/dll/win32/wdmaud.drv/wdmaud.c [iso-8859-1] Sun Feb 22 17:07:18 2009 @@ -53,7 +53,7 @@
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 @@
case DRV_QUERYCONFIGURE : { - SND_TRACE(L"DRV_QUERYCONFIGURE"); + SND_TRACE(L"DRV_QUERYCONFIGURE\n"); return 0L; } case DRV_CONFIGURE :