Add a typecast to remove a warning

svn path=/trunk/; revision=24785
This commit is contained in:
Aleksey Bragin 2006-11-19 20:06:44 +00:00
parent fc73d244e4
commit 0cd52c45f5

View file

@ -283,7 +283,7 @@ DbgPrompt(PCCH OutputString,
/* Setup the output string */ /* Setup the output string */
Output.Length = strlen (OutputString); Output.Length = strlen (OutputString);
Output.Buffer = OutputString; Output.Buffer = (PCHAR)OutputString;
/* Call the system service */ /* Call the system service */
return DebugPrompt(&Output, &Input); return DebugPrompt(&Output, &Input);