From d4ee6b2ee0c11cde224e75c3edf9f024b1ecd49d Mon Sep 17 00:00:00 2001 From: Austin English Date: Sat, 18 Oct 2008 21:33:39 -0500 Subject: [PATCH] oleaut32: quiet a noisy fixme --- dlls/oleaut32/typelib.c | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/dlls/oleaut32/typelib.c b/dlls/oleaut32/typelib.c index 7e069d6..0a07827 100644 --- a/dlls/oleaut32/typelib.c +++ b/dlls/oleaut32/typelib.c @@ -3095,6 +3095,7 @@ static void SLTG_DoVars(char *pBlk, char *pFirstItem, ITypeInfoImpl *pTI, unsign SLTG_Variable *pItem; unsigned short i; WORD *pType; + static int quietfixme = 0; for(pItem = (SLTG_Variable *)pFirstItem, i = 0; i < cVars; pItem = (SLTG_Variable *)(pBlk + pItem->next), i++) { @@ -3178,7 +3179,10 @@ static void SLTG_DoVars(char *pBlk, char *pFirstItem, ITypeInfoImpl *pTI, unsign *(INT*)(pBlk + pItem->byte_offs); break; default: - FIXME_(typelib)("VAR_CONST unimplemented for type %d\n", (*ppVarDesc)->vardesc.elemdescVar.tdesc.vt); + if (quietfixme == 0){ + FIXME_(typelib)("VAR_CONST unimplemented for type %d\n", (*ppVarDesc)->vardesc.elemdescVar.tdesc.vt); + quietfixme = 1; + } } } } -- 1.5.4.3