summaryrefslogtreecommitdiff
path: root/sys/arch/i386/stand
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1998-05-18 22:07:30 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1998-05-18 22:07:30 +0000
commitf1edd315e0480f10dca5b8d79dca45c93f1dc901 (patch)
tree6dab08cb2052abdedc5c4ab189041b74f5878bff /sys/arch/i386/stand
parent234d979ca263eab860dc273576acc263c390cc65 (diff)
start using new apiver things
Diffstat (limited to 'sys/arch/i386/stand')
-rw-r--r--sys/arch/i386/stand/libsa/exec_i386.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/i386/stand/libsa/exec_i386.c b/sys/arch/i386/stand/libsa/exec_i386.c
index 460fd579ace..3f651f6a0f2 100644
--- a/sys/arch/i386/stand/libsa/exec_i386.c
+++ b/sys/arch/i386/stand/libsa/exec_i386.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: exec_i386.c,v 1.20 1997/11/30 21:51:43 mickey Exp $ */
+/* $OpenBSD: exec_i386.c,v 1.21 1998/05/18 22:07:29 mickey Exp $ */
/*
* Copyright (c) 1997 Michael Shalayeff
@@ -71,7 +71,7 @@ machdep_start(startaddr, howto, loadaddr, ssym, esym)
x->a_entry, x->a_trsize, x->a_drsize);
printf("/bsd(%x,%x,%x,%x,%x,%x,%d,%p)\n",
- howto, bootdev, BOOT_APIVER, round_to_size(esym),
+ howto, bootdev, BOOTARG_APIVER, round_to_size(esym),
extmem, cnvmem, ac, av);
getchar();
#endif
@@ -79,7 +79,7 @@ machdep_start(startaddr, howto, loadaddr, ssym, esym)
printf("entry point at %p\n", startaddr);
/* stack and the gung is ok at this point, so, no need for asm setup */
- (*(startfuncp)startaddr)(howto, bootdev, BOOT_APIVER,
+ (*(startfuncp)startaddr)(howto, bootdev, BOOTARG_APIVER,
round_to_size(esym), extmem, cnvmem, ac, (int)av);
/* not reached */
}