mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 13:45:56 +00:00
[SERVICES][SETUPLIB][UMANDLG][USETUP] Add missing \n to DPRINT() calls (#5983)
And promote 1 DPRINT() to DPRINT1.
This commit is contained in:
parent
98353cdb37
commit
780c2a0375
6 changed files with 12 additions and 12 deletions
|
@ -833,7 +833,7 @@ InitializeSetup(
|
|||
&pSetupData->SourceRootDir);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("GetSourcePaths() failed (Status 0x%08lx)", Status);
|
||||
DPRINT1("GetSourcePaths() failed (Status 0x%08lx)\n", Status);
|
||||
return ERROR_NO_SOURCE_DRIVE;
|
||||
}
|
||||
/*
|
||||
|
@ -850,7 +850,7 @@ InitializeSetup(
|
|||
Error = LoadSetupInf(pSetupData);
|
||||
if (Error != ERROR_SUCCESS)
|
||||
{
|
||||
DPRINT1("LoadSetupInf() failed (Error 0x%lx)", Error);
|
||||
DPRINT1("LoadSetupInf() failed (Error 0x%lx)\n", Error);
|
||||
return Error;
|
||||
}
|
||||
DPRINT1("SourcePath (2): '%wZ'\n", &pSetupData->SourcePath);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue