diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-02-08 13:38:15 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-02-08 13:38:15 +0000 |
commit | 3e1ea58ad3f8bec5a1f9deff02b8899f10549295 (patch) | |
tree | f6c9fc6a3d33fd37cf19483b7765e6de11e3d82b /sys/arch | |
parent | 4c1922330aa5ba7f2b1c3f57b088d94455393f59 (diff) |
Actually give esym some storage. As it was, esym pointed
into the memory of some other variable.
How did this ever work?
(well, the floppies didn't work, but they should now).
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/alpha/alpha/locore.s | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/alpha/locore.s b/sys/arch/alpha/alpha/locore.s index 10efebae79a..3987eeda4fe 100644 --- a/sys/arch/alpha/alpha/locore.s +++ b/sys/arch/alpha/alpha/locore.s @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.s,v 1.14 2000/11/08 19:16:59 ericj Exp $ */ +/* $OpenBSD: locore.s,v 1.15 2001/02/08 13:38:14 art Exp $ */ /* $NetBSD: locore.s,v 1.80 2000/09/04 00:31:59 thorpej Exp $ */ /*- @@ -1920,7 +1920,7 @@ EXPORT(cold) .long 1 /* cold start flag (.long -> _4_ bytes) */ .align 3 EXPORT(esym) - .quad /* store end of kernel symbol table here */ + .quad 1 /* store end of kernel symbol table here */ /**************************************************************************/ |