diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2007-02-14 16:47:05 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2007-02-14 16:47:05 +0000 |
commit | 42b74bbbb54cea1be3e2b3feb6ab5df201defa08 (patch) | |
tree | 4aa0b6db5d4b7a4c2ea8d763b3323c3d4cb6c7bb | |
parent | 20656032e13e1ed07cc0ef37c29a2d52cde58dd8 (diff) |
recycle swbuf that had been long gone (w/ old vm)
(this is in preparation for approaching GBC work)
-rw-r--r-- | sys/conf/param.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/conf/param.c b/sys/conf/param.c index 1630cc0853f..ed72c4fa57e 100644 --- a/sys/conf/param.c +++ b/sys/conf/param.c @@ -1,4 +1,4 @@ -/* $OpenBSD: param.c,v 1.23 2004/01/01 20:17:34 millert Exp $ */ +/* $OpenBSD: param.c,v 1.24 2007/02/14 16:47:04 mickey Exp $ */ /* $NetBSD: param.c,v 1.16 1996/03/12 03:08:40 mrg Exp $ */ /* @@ -161,7 +161,7 @@ struct msginfo msginfo = { * them here forces loader errors if this file is omitted * (if they've been externed everywhere else; hah!). */ -struct buf *buf, *swbuf; +struct buf *buf; char *buffers; struct utsname utsname; |