Author: sginsberg
Date: Mon Dec 15 08:43:25 2008
New Revision: 38109
URL:
http://svn.reactos.org/svn/reactos?rev=38109&view=rev
Log:
- Silence debug spam
Modified:
trunk/reactos/base/system/services/database.c
Modified: trunk/reactos/base/system/services/database.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/services/datab…
==============================================================================
--- trunk/reactos/base/system/services/database.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/services/database.c [iso-8859-1] Mon Dec 15 08:43:25 2008
@@ -452,7 +452,7 @@
HANDLE hEvent;
DWORD dwError;
- DPRINT1("WaitForLSA() called\n");
+ DPRINT("WaitForLSA() called\n");
hEvent = CreateEventW(NULL,
TRUE,
@@ -476,13 +476,13 @@
}
}
- DPRINT1("Wait for LSA!\n");
+ DPRINT("Wait for LSA!\n");
WaitForSingleObject(hEvent, INFINITE);
- DPRINT1("LSA is available!\n");
+ DPRINT("LSA is available!\n");
CloseHandle(hEvent);
- DPRINT1("WaitForLSA() done\n");
+ DPRINT("WaitForLSA() done\n");
}