mirror of
https://github.com/reactos/reactos.git
synced 2024-11-23 11:33:31 +08:00
[BASESRV][CSRLIB][NTVDM] Add missing \n to DPRINT() calls (#5951)
and promote 1 DPRINT().
This commit is contained in:
parent
80751952ba
commit
f7d612f3e3
@ -63,7 +63,7 @@ CsrpConnectToServer(
|
|||||||
sizeof(CSR_PORT_NAME);
|
sizeof(CSR_PORT_NAME);
|
||||||
if (PortNameLength > UNICODE_STRING_MAX_BYTES)
|
if (PortNameLength > UNICODE_STRING_MAX_BYTES)
|
||||||
{
|
{
|
||||||
DPRINT1("PortNameLength too big: %Iu", PortNameLength);
|
DPRINT1("PortNameLength too big: %Iu\n", PortNameLength);
|
||||||
return STATUS_NAME_TOO_LONG;
|
return STATUS_NAME_TOO_LONG;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -374,7 +374,7 @@ CsrClientCallServer(
|
|||||||
/* Make sure the length is valid */
|
/* Make sure the length is valid */
|
||||||
if (DataLength > (MAXSHORT - sizeof(CSR_API_MESSAGE)))
|
if (DataLength > (MAXSHORT - sizeof(CSR_API_MESSAGE)))
|
||||||
{
|
{
|
||||||
DPRINT1("DataLength too big: %lu", DataLength);
|
DPRINT1("DataLength too big: %lu\n", DataLength);
|
||||||
return STATUS_INVALID_PARAMETER;
|
return STATUS_INVALID_PARAMETER;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -646,7 +646,7 @@ VOID WINAPI VbeService(LPWORD Stack)
|
|||||||
|
|
||||||
default:
|
default:
|
||||||
{
|
{
|
||||||
DPRINT("VESA INT 0x10, AL = 0x05, Unknown subfunction: %02X", getBH());
|
DPRINT1("VESA INT 0x10, AL = 0x05, Unknown subfunction: 0x%02X\n", getBH());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@ OpenRomFile(IN PCSTR RomFileName,
|
|||||||
if (ulRomSize > 0x40000)
|
if (ulRomSize > 0x40000)
|
||||||
{
|
{
|
||||||
/* We failed, bail out */
|
/* We failed, bail out */
|
||||||
DPRINT1("ROM image size 0x%lx too large, expected at most 0x40000 (256kB)", ulRomSize);
|
DPRINT1("ROM image size 0x%lx too large, expected at most 0x40000 (256kB)\n", ulRomSize);
|
||||||
FileClose(hRomFile);
|
FileClose(hRomFile);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@ -72,7 +72,7 @@ LoadRomFileByHandle(IN HANDLE RomFileHandle,
|
|||||||
*/
|
*/
|
||||||
if (RomSize > 0x40000)
|
if (RomSize > 0x40000)
|
||||||
{
|
{
|
||||||
DPRINT1("ROM image size 0x%lx too large, expected at most 0x40000 (256kB)", RomSize);
|
DPRINT1("ROM image size 0x%lx too large, expected at most 0x40000 (256kB)\n", RomSize);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -341,7 +341,7 @@ static BOOL LoadInstallableVDD(VOID)
|
|||||||
VDDValueName = VDDList;
|
VDDValueName = VDDList;
|
||||||
while (*VDDList)
|
while (*VDDList)
|
||||||
{
|
{
|
||||||
DPRINT1("Loading VDD '%S'...", VDDList);
|
DPRINT1("Loading VDD '%S'... ", VDDList);
|
||||||
hVDD = LoadLibraryW(VDDList);
|
hVDD = LoadLibraryW(VDDList);
|
||||||
if (hVDD == NULL)
|
if (hVDD == NULL)
|
||||||
{
|
{
|
||||||
@ -503,7 +503,6 @@ VOID VDDResumeUserHook(VOID)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
VOID VDDSupInitialize(VOID)
|
VOID VDDSupInitialize(VOID)
|
||||||
{
|
{
|
||||||
/* Register the 3rd-party VDD BOP Handler */
|
/* Register the 3rd-party VDD BOP Handler */
|
||||||
|
@ -89,7 +89,6 @@ VOID BaseSrvDestroyConsoleRecord(PVDM_CONSOLE_RECORD ConsoleRecord)
|
|||||||
/* Remove the console record */
|
/* Remove the console record */
|
||||||
// RemoveEntryList(&ConsoleRecord->Entry);
|
// RemoveEntryList(&ConsoleRecord->Entry);
|
||||||
RtlFreeHeap(BaseSrvHeap, 0, ConsoleRecord);
|
RtlFreeHeap(BaseSrvHeap, 0, ConsoleRecord);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
NTSTATUS GetConsoleRecordBySessionId(ULONG TaskId, PVDM_CONSOLE_RECORD *Record)
|
NTSTATUS GetConsoleRecordBySessionId(ULONG TaskId, PVDM_CONSOLE_RECORD *Record)
|
||||||
@ -904,7 +903,7 @@ CSR_API(BaseSrvUpdateVDMEntry)
|
|||||||
case VdmEntryUpdateControlCHandler:
|
case VdmEntryUpdateControlCHandler:
|
||||||
{
|
{
|
||||||
// TODO: NOT IMPLEMENTED
|
// TODO: NOT IMPLEMENTED
|
||||||
DPRINT1("BaseSrvUpdateVDMEntry: VdmEntryUpdateControlCHandler not implemented!");
|
DPRINT1("BaseSrvUpdateVDMEntry: VdmEntryUpdateControlCHandler not implemented\n");
|
||||||
Status = STATUS_NOT_IMPLEMENTED;
|
Status = STATUS_NOT_IMPLEMENTED;
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user