mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 21:46:05 +00:00
[NTOS]: I am sorry, this is embarssing. Fix build again.
svn path=/trunk/; revision=47871
This commit is contained in:
parent
d80d711832
commit
26f62038b8
2 changed files with 6 additions and 6 deletions
|
@ -1044,7 +1044,7 @@ ExpInitializeExecutive(IN ULONG Cpu,
|
||||||
if (NT_SUCCESS(Status))
|
if (NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
/* Setup the string */
|
/* Setup the string */
|
||||||
RtlInitAnsiString(&CsdString, MsgEntry->Text);
|
RtlInitAnsiString(&CsdString, (PCHAR)MsgEntry->Text);
|
||||||
|
|
||||||
/* Remove trailing newline */
|
/* Remove trailing newline */
|
||||||
while ((CsdString.Length > 0) &&
|
while ((CsdString.Length > 0) &&
|
||||||
|
@ -1371,7 +1371,7 @@ Phase1InitializationDiscard(IN PVOID Context)
|
||||||
/* Create the banner message */
|
/* Create the banner message */
|
||||||
Status = RtlStringCbPrintfA(EndBuffer,
|
Status = RtlStringCbPrintfA(EndBuffer,
|
||||||
Size,
|
Size,
|
||||||
MsgEntry->Text,
|
(PCHAR)MsgEntry->Text,
|
||||||
StringBuffer,
|
StringBuffer,
|
||||||
NtBuildNumber & 0xFFFF,
|
NtBuildNumber & 0xFFFF,
|
||||||
BeginBuffer);
|
BeginBuffer);
|
||||||
|
@ -1486,7 +1486,7 @@ Phase1InitializationDiscard(IN PVOID Context)
|
||||||
Status = RtlStringCbPrintfA(StringBuffer,
|
Status = RtlStringCbPrintfA(StringBuffer,
|
||||||
256,
|
256,
|
||||||
NT_SUCCESS(MsgStatus) ?
|
NT_SUCCESS(MsgStatus) ?
|
||||||
MsgEntry->Text :
|
(PCHAR)MsgEntry->Text :
|
||||||
"%u System Processor [%u MB Memory] %Z\n",
|
"%u System Processor [%u MB Memory] %Z\n",
|
||||||
KeNumberProcessors,
|
KeNumberProcessors,
|
||||||
Size,
|
Size,
|
||||||
|
@ -1650,7 +1650,7 @@ Phase1InitializationDiscard(IN PVOID Context)
|
||||||
if (NT_SUCCESS(Status))
|
if (NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
/* Display it */
|
/* Display it */
|
||||||
InbvDisplayString(MsgEntry->Text);
|
InbvDisplayString((PCHAR)MsgEntry->Text);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1670,7 +1670,7 @@ Phase1InitializationDiscard(IN PVOID Context)
|
||||||
if (NT_SUCCESS(Status))
|
if (NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
/* Display it */
|
/* Display it */
|
||||||
InbvDisplayString(MsgEntry->Text);
|
InbvDisplayString((PCHAR)MsgEntry->Text);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Setup boot logging */
|
/* Setup boot logging */
|
||||||
|
|
|
@ -463,7 +463,7 @@ KeGetBugMessageText(IN ULONG BugCheckCode,
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Get the final Code */
|
/* Get the final Code */
|
||||||
BugCode = ((PMESSAGE_RESOURCE_ENTRY)MessageEntry)->Text;
|
BugCode = (PCHAR)((PMESSAGE_RESOURCE_ENTRY)MessageEntry)->Text;
|
||||||
i = strlen(BugCode);
|
i = strlen(BugCode);
|
||||||
|
|
||||||
/* Handle newlines */
|
/* Handle newlines */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue