From 58294b818ccbb1564eb1b7f56853dd39cc538725 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Mon, 23 Oct 2006 13:55:49 +0200 Subject: [PATCH] oleview: Fix compilation with gcc 2.95. --- programs/oleview/typelib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/oleview/typelib.c b/programs/oleview/typelib.c index e91a613afb4..fd9c44d90d9 100644 --- a/programs/oleview/typelib.c +++ b/programs/oleview/typelib.c @@ -537,7 +537,7 @@ int EnumFuncs(ITypeInfo *pTypeInfo, int cFuncs, HTREEITEM hParent) } bFirst = TRUE; #define ENUM_PARAM_FLAG(x)\ - if(pFuncDesc->lprgelemdescParam[j].paramdesc.wParamFlags & x)\ + if(U(pFuncDesc->lprgelemdescParam[j]).paramdesc.wParamFlags & x) \ {\ if(bFirst) AddToTLDataStrW((TYPELIB_DATA*)(U(tvis).item.lParam),\ wszOpenBrackets1);\