diff --git a/reactos/lib/rtl/debug.c b/reactos/lib/rtl/debug.c index d0534236b66..2aec95c3ad8 100644 --- a/reactos/lib/rtl/debug.c +++ b/reactos/lib/rtl/debug.c @@ -283,7 +283,7 @@ DbgPrompt(PCCH OutputString, /* Setup the output string */ Output.Length = strlen (OutputString); - Output.Buffer = OutputString; + Output.Buffer = (PCHAR)OutputString; /* Call the system service */ return DebugPrompt(&Output, &Input);