Francois Gouget : winealsa.drv: Remove trailing spaces in Wine traces.
Module: wine Branch: master Commit: f6bdd7dc6cad981b3ef1c1f751251c5e09160d22 URL: http://source.winehq.org/git/wine.git/?a=commit;h=f6bdd7dc6cad981b3ef1c1f751... Author: Francois Gouget <fgouget(a)free.fr> Date: Mon Dec 10 01:23:19 2007 +0100 winealsa.drv: Remove trailing spaces in Wine traces. --- dlls/winealsa.drv/wavein.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/winealsa.drv/wavein.c b/dlls/winealsa.drv/wavein.c index 200879b..277fa8c 100644 --- a/dlls/winealsa.drv/wavein.c +++ b/dlls/winealsa.drv/wavein.c @@ -201,7 +201,7 @@ static DWORD CALLBACK widRecorder(LPVOID pmt) read = wwi->read(wwi->pcm, lpWaveHdr->lpData + lpWaveHdr->dwBytesRecorded, frames); bytesRead = snd_pcm_frames_to_bytes(wwi->pcm, read); - TRACE("bytesRead=(%d(%d)/(%d)) -> (%d/%d) \n", bytesRead, read, frames, lpWaveHdr->dwBufferLength, lpWaveHdr->dwBufferLength - lpWaveHdr->dwBytesRecorded); + TRACE("bytesRead=(%d(%d)/(%d)) -> (%d/%d)\n", bytesRead, read, frames, lpWaveHdr->dwBufferLength, lpWaveHdr->dwBufferLength - lpWaveHdr->dwBytesRecorded); if (read != (DWORD) -1) { /* update number of bytes recorded in current buffer and by this device */
participants (1)
-
Alexandre Julliard