summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-02-08 13:38:15 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-02-08 13:38:15 +0000
commit3e1ea58ad3f8bec5a1f9deff02b8899f10549295 (patch)
treef6c9fc6a3d33fd37cf19483b7765e6de11e3d82b /sys/arch
parent4c1922330aa5ba7f2b1c3f57b088d94455393f59 (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.s4
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 */
/**************************************************************************/