diff --git a/reactos/ntoskrnl/inbv/inbv.c b/reactos/ntoskrnl/inbv/inbv.c index 95e48a2316f..68e342e4898 100644 --- a/reactos/ntoskrnl/inbv/inbv.c +++ b/reactos/ntoskrnl/inbv/inbv.c @@ -3,7 +3,7 @@ #include #define NDEBUG #include -#include "bootvid\bootvid.h" +#include "bootvid/bootvid.h" /* GLOBALS *******************************************************************/ @@ -239,7 +239,7 @@ InbvDisplayString(IN PCHAR String) InbvAcquireLock(); /* Make sure we're installed and display the string */ - if (InbvBootDriverInstalled) VidDisplayString(String); + if (InbvBootDriverInstalled) VidDisplayString((PUCHAR) String); /* Call Headless (We don't support headless for now) HeadlessDispatch(DISPLAY_STRING); */