[SERVICES][SETUPLIB][UMANDLG][USETUP] Add missing \n to DPRINT() calls (#5983)

And promote 1 DPRINT() to DPRINT1.
This commit is contained in:
Serge Gautherie 2023-11-16 23:22:12 +01:00 committed by GitHub
parent 98353cdb37
commit 780c2a0375
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 12 additions and 12 deletions

View file

@ -1882,7 +1882,7 @@ CreatePartitionList(VOID)
&ReturnSize);
if (!NT_SUCCESS(Status))
{
DPRINT1("NtQuerySystemInformation() failed, Status 0x%08lx", Status);
DPRINT1("NtQuerySystemInformation() failed, Status 0x%08lx\n", Status);
RtlFreeHeap(ProcessHeap, 0, List);
return NULL;
}