Fix a simple error in stage1.c (missing else).

Signed-off-by: Ronald G. Minnich <rminnich@gmail.com>
Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>


git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@548 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
Carl-Daniel Hailfinger 2008-01-05 01:35:57 +00:00
parent 75c6c210de
commit 06f72c080f

View file

@ -176,8 +176,8 @@ void __attribute__((stdcall)) stage1_main(u32 bist)
entry = load_file_segments(&archive, "normal/payload");
if (entry != (void*)-1)
run_address(entry);
die("FATAL: No usable payload found.\n");
else
die("FATAL: No usable payload found.\n");
die ("FATAL: Last stage returned to LinuxBIOS.\n");
}