diff options
author | 2001-02-08 13:38:14 +0000 | |
---|---|---|
committer | 2001-02-08 13:38:14 +0000 | |
commit | 3d4e937841bbbf226122f7a10fa2601674d8b1b8 (patch) | |
tree | ecc39fdaa0bae416432ffa946ba54d288fe33f64 | |
parent | %.30s is too short for IPv6 numeric address. use %.128s for now. markus ok (diff) | |
download | wireguard-openbsd-3d4e937841bbbf226122f7a10fa2601674d8b1b8.tar.xz wireguard-openbsd-3d4e937841bbbf226122f7a10fa2601674d8b1b8.zip |
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).
-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 */ /**************************************************************************/ |