Commit 8e3a9077 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

wineesd.drv: Fix a trace and remove an unneeded cast.

parent e71cfdc1
......@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment