[FREELDR] LoadAndBootWindowsCommon(): Use UNREACHABLE, on success

KiSystemStartup() is DECLSPEC_NORETURN.
This commit is contained in:
Serge Gautherie 2020-11-12 01:22:46 +01:00 committed by Victor Perevertkin
parent e0400e7810
commit abc84a742b

View file

@ -1035,7 +1035,8 @@ LoadAndBootWindowsCommon(
/* Pass control */
(*KiSystemStartup)(LoaderBlockVA);
return ESUCCESS;
UNREACHABLE; // return ESUCCESS;
}
VOID