mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-17 18:12:04 +01:00
fix so vs10 compiles without complaining
This commit is contained in:
parent
4a79db620c
commit
a856f2ed7b
1 changed files with 1 additions and 1 deletions
|
@ -825,7 +825,7 @@ class msxml2_wrapper :
|
|||
virtual HRESULT __stdcall Read(void* pv, ULONG cb, ULONG* pcbRead)
|
||||
{
|
||||
source_.getByteStream()->read(reinterpret_cast<char*>(pv), cb);
|
||||
*pcbRead = source_.getByteStream()->gcount();
|
||||
*pcbRead = static_cast<ULONG>(source_.getByteStream()->gcount());
|
||||
return S_OK;
|
||||
} // Read
|
||||
|
||||
|
|
Loading…
Reference in a new issue