From 0cd52c45f5136dbadf10f6b0605a4653cf26f6ae Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Sun, 19 Nov 2006 20:06:44 +0000 Subject: [PATCH] Add a typecast to remove a warning svn path=/trunk/; revision=24785 --- reactos/lib/rtl/debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);