ntdll: Make RtlCompactHeap more silent.

This commit is contained in:
Detlef Riekenberg 2007-08-27 17:11:36 +02:00 committed by Alexandre Julliard
parent 2e55b3d6ab
commit a45badf5c0

View file

@ -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;
}