diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1997-03-31 07:25:49 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1997-03-31 07:25:49 +0000 |
commit | 703b335ddfd4d6dd07e2e5d09b3bb9a195198fee (patch) | |
tree | 95ed912f3d400c3b1478dad3f7c33a14f8794f6a /sys/arch/hp300/stand | |
parent | c86f8a8453abfe2aa749b020a8cd020c66a84961 (diff) |
Jump to loadaddr instead of entry due to libsa change.
Diffstat (limited to 'sys/arch/hp300/stand')
-rw-r--r-- | sys/arch/hp300/stand/machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hp300/stand/machdep.c b/sys/arch/hp300/stand/machdep.c index aed315de64d..f751ea9c99a 100644 --- a/sys/arch/hp300/stand/machdep.c +++ b/sys/arch/hp300/stand/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.2 1997/01/17 08:32:52 downsj Exp $ */ +/* $OpenBSD: machdep.c,v 1.3 1997/03/31 07:25:48 downsj Exp $ */ /* $NetBSD: machdep.c,v 1.6 1996/10/14 07:33:46 thorpej Exp $ */ /* @@ -170,5 +170,5 @@ machdep_start(entry, howto, loadaddr, ssym, esym) asm("movl %0,d5" : : "m" (cons_scode)); asm("movl %0,a5" : : "a" (loadaddr)); asm("movl %0,a4" : : "a" (esym)); - (*((int (*)())entry))(); + (*((int (*)())loadaddr))(); } |