mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
[NTOS:CM] Remove some debug prints
svn path=/trunk/; revision=65189
This commit is contained in:
parent
77e9b087e9
commit
3248b9e3b7
1 changed files with 4 additions and 2 deletions
|
@ -78,12 +78,14 @@ CmpDoFlushNextHive(_In_ BOOLEAN ForceFlush,
|
|||
else
|
||||
{
|
||||
/* Do the sync */
|
||||
DPRINT1("Flushing: %wZ\n", &CmHive->FileFullPath);
|
||||
DPRINT1("Handle: %p\n", CmHive->FileHandles[HFILE_TYPE_PRIMARY]);
|
||||
DPRINT("Flushing: %wZ\n", &CmHive->FileFullPath);
|
||||
DPRINT("Handle: %p\n", CmHive->FileHandles[HFILE_TYPE_PRIMARY]);
|
||||
Status = HvSyncHive(&CmHive->Hive);
|
||||
if(!NT_SUCCESS(Status))
|
||||
{
|
||||
/* Let them know we failed */
|
||||
DPRINT1("Failed to flush %wZ on handle %p (status 0x%08lx)\n",
|
||||
&CmHive->FileFullPath, CmHive->FileHandles[HFILE_TYPE_PRIMARY], Status);
|
||||
*Error = TRUE;
|
||||
Result = FALSE;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue