From a45badf5c0a1c4d4cddf3c131450d796aa393f17 Mon Sep 17 00:00:00 2001 From: Detlef Riekenberg Date: Mon, 27 Aug 2007 17:11:36 +0200 Subject: [PATCH] ntdll: Make RtlCompactHeap more silent. --- dlls/ntdll/heap.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/ntdll/heap.c b/dlls/ntdll/heap.c index 1369b0d811d..fb7df123ac3 100644 --- a/dlls/ntdll/heap.c +++ b/dlls/ntdll/heap.c @@ -1461,7 +1461,8 @@ error: */ ULONG WINAPI RtlCompactHeap( HANDLE heap, ULONG flags ) { - FIXME( "stub\n" ); + static BOOL reported; + if (!reported++) FIXME( "(%p, 0x%x) stub\n", heap, flags ); return 0; } -- 2.11.4.GIT