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

This commit is contained in:
Francois Gouget 2008-07-14 09:51:38 +02:00 committed by Alexandre Julliard
parent 7551b82cca
commit 6dd7f060a2
1 changed files with 2 additions and 1 deletions

View File

@ -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;