Commit a45badf5 authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

ntdll: Make RtlCompactHeap more silent.

parent 2e55b3d6
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment