setupapi: Avoid spamming console.

This commit is contained in:
Juan Lang 2007-10-15 11:18:22 -07:00 committed by Alexandre Julliard
parent dce5feb1a8
commit 1392883b8e

View file

@ -852,7 +852,13 @@ void WINAPI pSetupSetGlobalFlags( DWORD flags )
*/
DWORD WINAPI CMP_WaitNoPendingInstallEvents( DWORD dwTimeout )
{
FIXME("%d\n", dwTimeout);
static BOOL warned = FALSE;
if (!warned)
{
FIXME("%d\n", dwTimeout);
warned = TRUE;
}
return WAIT_OBJECT_0;
}