mirror of
https://github.com/reactos/reactos.git
synced 2025-05-06 18:31:26 +00:00
[SETUPLIB] Silence annoying DPRINT1s.
This commit is contained in:
parent
6f185c5fe2
commit
b2606fd07a
1 changed files with 2 additions and 2 deletions
|
@ -154,7 +154,7 @@ DoesPathExist(
|
|||
if (NT_SUCCESS(Status))
|
||||
NtClose(FileHandle);
|
||||
else
|
||||
DPRINT1("Failed to open directory '%wZ', Status 0x%08lx\n", &Name, Status);
|
||||
DPRINT("Failed to open directory '%wZ', Status 0x%08lx\n", &Name, Status);
|
||||
|
||||
return NT_SUCCESS(Status);
|
||||
}
|
||||
|
@ -187,7 +187,7 @@ DoesFileExist(
|
|||
if (NT_SUCCESS(Status))
|
||||
NtClose(FileHandle);
|
||||
else
|
||||
DPRINT1("Failed to open file '%wZ', Status 0x%08lx\n", &FileName, Status);
|
||||
DPRINT("Failed to open file '%wZ', Status 0x%08lx\n", &FileName, Status);
|
||||
|
||||
return NT_SUCCESS(Status);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue