Avoid one more access to pcbRead.

This commit is contained in:
Alex Villacís Lasso 2005-06-14 11:38:09 +00:00 committed by Alexandre Julliard
parent 9b95bb526d
commit a63de8d249
1 changed files with 1 additions and 1 deletions

View File

@ -392,7 +392,7 @@ HRESULT WINAPI IDirectMusicLoaderResourceStream_IStream_Read (LPSTREAM iface, vo
/* FIXME: error checking would be nice */
if (pcbRead) *pcbRead = cb;
TRACE_(dmfileraw)(": data (size = 0x%08lX): '%s'\n", cb, debugstr_an(pv, *pcbRead));
TRACE_(dmfileraw)(": data (size = 0x%08lX): '%s'\n", cb, debugstr_an(pv, cb));
return S_OK;
}