diff options
Diffstat (limited to 'sys/arch/alpha/stand/boot/boot.c')
-rw-r--r-- | sys/arch/alpha/stand/boot/boot.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/alpha/stand/boot/boot.c b/sys/arch/alpha/stand/boot/boot.c index 5af7bdb9274..d79987b7356 100644 --- a/sys/arch/alpha/stand/boot/boot.c +++ b/sys/arch/alpha/stand/boot/boot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: boot.c,v 1.9 1997/05/05 06:01:51 millert Exp $ */ +/* $OpenBSD: boot.c,v 1.10 1997/07/08 10:42:25 niklas Exp $ */ /* $NetBSD: boot.c,v 1.10 1997/01/18 01:58:33 cgd Exp $ */ /* @@ -59,7 +59,7 @@ char boot_flags[128]; extern char bootprog_name[], bootprog_rev[], bootprog_date[], bootprog_maker[]; -vm_offset_t ffp_save, ptbr_save; +vm_offset_t ffp_save, ptbr_save, esym; int debug; @@ -109,7 +109,7 @@ main() printf("\n"); if (win) { (void)printf("Entering %s at 0x%lx...\n", name, entry); - (*(void (*)())entry)(ffp_save, ptbr_save, 0); + (*(void (*)())entry)(ffp_save, ptbr_save, esym); } (void)printf("Boot failed! Halting...\n"); |