Module: wine Branch: master Commit: 8e3a907727b7708d4527398976cde15f2298c000 URL: http://source.winehq.org/git/wine.git/?a=commit;h=8e3a907727b7708d4527398976...
Author: Francois Gouget fgouget@codeweavers.com Date: Sat Mar 28 11:21:32 2009 +0100
wineesd.drv: Fix a trace and remove an unneeded cast.
---
dlls/wineesd.drv/audio.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/wineesd.drv/audio.c b/dlls/wineesd.drv/audio.c index b2691bf..b6a167b 100644 --- a/dlls/wineesd.drv/audio.c +++ b/dlls/wineesd.drv/audio.c @@ -1287,8 +1287,8 @@ static DWORD wodOpen(WORD wDevID, LPWAVEOPENDESC lpDesc, DWORD dwFlags) } wwo->hStartUpEvent = INVALID_HANDLE_VALUE;
- TRACE("esd=0x%lx, dwBufferSize=%d\n", - (long)wwo->esd_fd, wwo->dwBufferSize); + TRACE("esd=%d, dwBufferSize=%d\n", + wwo->esd_fd, wwo->dwBufferSize);
TRACE("wBitsPerSample=%u, nAvgBytesPerSec=%u, nSamplesPerSec=%u, nChannels=%u nBlockAlign=%u!\n", wwo->waveFormat.Format.wBitsPerSample, wwo->waveFormat.Format.nAvgBytesPerSec,