From 545d07b94f6231e7bc7273c0070fd8a3a60b0dc9 Mon Sep 17 00:00:00 2001 From: Austin English Date: Wed, 22 Oct 2008 20:28:37 -0500 Subject: [PATCH] ole32: quiet a ridiculously noisy fixme --- dlls/ole32/usrmarshal.c | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/dlls/ole32/usrmarshal.c b/dlls/ole32/usrmarshal.c index b8487c3..eaad261 100644 --- a/dlls/ole32/usrmarshal.c +++ b/dlls/ole32/usrmarshal.c @@ -2398,8 +2398,12 @@ HRESULT CALLBACK IEnumFORMATETC_Next_Proxy( FORMATETC *rgelt, ULONG *pceltFetched) { - FIXME(":stub\n"); - return E_NOTIMPL; + static int quietfixme = 0; + if (quietfixme == 0) { + FIXME(":stub\n"); + quietfixme =1; + } + return E_NOTIMPL; } HRESULT __RPC_STUB IEnumFORMATETC_Next_Stub( -- 1.5.4.3