[SETUPLIB] Silence annoying DPRINT1s.

This commit is contained in:
Hermès Bélusca-Maïto 2018-06-03 23:23:24 +02:00
parent 6f185c5fe2
commit b2606fd07a
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0

View file

@ -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);
}