Commit 1392883b authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

setupapi: Avoid spamming console.

parent dce5feb1
......@@ -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;
}
......
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