From d4c79eb3aded088880a82c1cfa03fee1a6b839e2 Mon Sep 17 00:00:00 2001 From: Louis Lenders Date: Fri, 26 Mar 2010 10:33:21 +0100 Subject: Quiet two noisy FIXME's --- dlls/gdi32/driver.c | 5 ++++- dlls/ntdll/rtl.c | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/dlls/gdi32/driver.c b/dlls/gdi32/driver.c index 635eeb8..639e4a8 100644 --- a/dlls/gdi32/driver.c +++ b/dlls/gdi32/driver.c @@ -750,6 +750,9 @@ INT WINAPI NamedEscape( HDC hdc, LPCWSTR pDriver, INT nEscape, INT cbInput, LPCS */ ULONG WINAPI DdQueryDisplaySettingsUniqueness(VOID) { - FIXME("stub\n"); + static int warn_once; + + if (!warn_once++) + FIXME("stub\n"); return 0; } diff --git a/dlls/ntdll/rtl.c b/dlls/ntdll/rtl.c index d4a7045..301b30c 100644 --- a/dlls/ntdll/rtl.c +++ b/dlls/ntdll/rtl.c @@ -444,7 +444,10 @@ PVOID WINAPI RtlInitializeGenericTable(PVOID pTable, PVOID arg2, PVOID arg3, PVO */ PVOID RtlEnumerateGenericTableWithoutSplaying(PVOID pTable, PVOID *RestartKey) { - FIXME("(%p,%p) stub!\n", pTable, RestartKey); + static int warn_once; + + if (!warn_once++) + FIXME("(%p,%p) stub!\n", pTable, RestartKey); return NULL; } -- 1.6.3.3