Detlef Riekenberg : ntdll: Make RtlCompactHeap more silent.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Aug 28 07:50:09 CDT 2007


Module: wine
Branch: master
Commit: a45badf5c0a1c4d4cddf3c131450d796aa393f17
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=a45badf5c0a1c4d4cddf3c131450d796aa393f17

Author: Detlef Riekenberg <wine.dev at web.de>
Date:   Mon Aug 27 17:11:36 2007 +0200

ntdll: Make RtlCompactHeap more silent.

---

 dlls/ntdll/heap.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/dlls/ntdll/heap.c b/dlls/ntdll/heap.c
index 1369b0d..fb7df12 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;
 }
 




More information about the wine-cvs mailing list