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