Commit 1501d3a4 authored by Christian Costa's avatar Christian Costa Committed by Alexandre Julliard

dmusic: Variable spelling fix.

parent 6894f384
...@@ -132,16 +132,16 @@ HRESULT DMUSIC_CreateDirectMusicInstrumentImpl (LPCGUID lpcGUID, LPVOID* ppobj, ...@@ -132,16 +132,16 @@ HRESULT DMUSIC_CreateDirectMusicInstrumentImpl (LPCGUID lpcGUID, LPVOID* ppobj,
static HRESULT read_from_stream(IStream *stream, void *data, ULONG size) static HRESULT read_from_stream(IStream *stream, void *data, ULONG size)
{ {
ULONG readed; ULONG bytes_read;
HRESULT hr; HRESULT hr;
hr = IStream_Read(stream, data, size, &readed); hr = IStream_Read(stream, data, size, &bytes_read);
if(FAILED(hr)){ if(FAILED(hr)){
TRACE("IStream_Read failed: %08x\n", hr); TRACE("IStream_Read failed: %08x\n", hr);
return hr; return hr;
} }
if(readed < size){ if (bytes_read < size) {
TRACE("Didn't read full chunk: %u < %u\n", readed, size); TRACE("Didn't read full chunk: %u < %u\n", bytes_read, size);
return E_FAIL; return E_FAIL;
} }
......
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