- Silence debug spam

svn path=/trunk/; revision=38109
This commit is contained in:
Stefan Ginsberg 2008-12-15 14:43:25 +00:00
parent e50e0d8646
commit ab621541ae

View file

@ -452,7 +452,7 @@ WaitForLSA(VOID)
HANDLE hEvent; HANDLE hEvent;
DWORD dwError; DWORD dwError;
DPRINT1("WaitForLSA() called\n"); DPRINT("WaitForLSA() called\n");
hEvent = CreateEventW(NULL, hEvent = CreateEventW(NULL,
TRUE, TRUE,
@ -476,13 +476,13 @@ WaitForLSA(VOID)
} }
} }
DPRINT1("Wait for LSA!\n"); DPRINT("Wait for LSA!\n");
WaitForSingleObject(hEvent, INFINITE); WaitForSingleObject(hEvent, INFINITE);
DPRINT1("LSA is available!\n"); DPRINT("LSA is available!\n");
CloseHandle(hEvent); CloseHandle(hEvent);
DPRINT1("WaitForLSA() done\n"); DPRINT("WaitForLSA() done\n");
} }