diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-07-17 23:26:08 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-07-17 23:26:08 +0000 |
commit | 0eb5637572e8725612cb9340886b3627b79cd526 (patch) | |
tree | dc7edab0f056de53f3295ba9a5875554efe7a89a /sys/lib/libsa | |
parent | 56dfea4297fc66544cd2bf6a1d838e37a50ec51c (diff) |
i love that const
Diffstat (limited to 'sys/lib/libsa')
-rw-r--r-- | sys/lib/libsa/cons.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libsa/cons.c b/sys/lib/libsa/cons.c index 63ea7363c13..9bfa91e5a63 100644 --- a/sys/lib/libsa/cons.c +++ b/sys/lib/libsa/cons.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cons.c,v 1.4 1997/07/14 22:03:09 mickey Exp $ */ +/* $OpenBSD: cons.c,v 1.5 1997/07/17 23:26:07 mickey Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff @@ -34,7 +34,7 @@ #include "stand.h" -static struct consw *console = &consw[0]; +static const struct consw *console = &consw[0]; int cons_probe() |