mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:43:31 +00:00
setupapi: Avoid spamming console.
This commit is contained in:
parent
dce5feb1a8
commit
1392883b8e
1 changed files with 7 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue