Module: wine Branch: master Commit: 58294b818ccbb1564eb1b7f56853dd39cc538725 URL: http://source.winehq.org/git/wine.git/?a=commit;h=58294b818ccbb1564eb1b7f568...
Author: Francois Gouget fgouget@free.fr Date: Mon Oct 23 13:55:49 2006 +0200
oleview: Fix compilation with gcc 2.95.
---
programs/oleview/typelib.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/programs/oleview/typelib.c b/programs/oleview/typelib.c index e91a613..fd9c44d 100644 --- a/programs/oleview/typelib.c +++ b/programs/oleview/typelib.c @@ -537,7 +537,7 @@ int EnumFuncs(ITypeInfo *pTypeInfo, int } 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);\