Commit 6dd7f060 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

msxml3: Fix compilation on systems that don't support nameless unions.

parent 7551b82c
......@@ -19,6 +19,7 @@
*/
#define COBJMACROS
#define NONAMELESSUNION
#include "config.h"
......@@ -264,7 +265,7 @@ static HRESULT WINAPI bsc_OnDataAvailable(
do
{
hr = IStream_Read(pstgmed->pstm, buf, sizeof(buf), &read);
hr = IStream_Read(pstgmed->u.pstm, buf, sizeof(buf), &read);
if(FAILED(hr))
break;
......
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