Add a typecast to remove a warning
authorAleksey Bragin <aleksey@reactos.org>
Sun, 19 Nov 2006 20:06:44 +0000 (20:06 +0000)
committerAleksey Bragin <aleksey@reactos.org>
Sun, 19 Nov 2006 20:06:44 +0000 (20:06 +0000)
svn path=/trunk/; revision=24785

reactos/lib/rtl/debug.c

index d053423..2aec95c 100644 (file)
@@ -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);