diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-09-04 23:44:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-09-04 23:44:20 +0000 |
commit | b4e24ef0becef3e872d821092780b7d84d84035d (patch) | |
tree | 895dcb30e6d70fd0d2fa341e0f5aebfcefdf8872 /usr.bin | |
parent | 6e69b2a3e9a34411460d33a432a805b3eb1924d1 (diff) |
Add a const to shut up -Wall
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/wall/ttymsg.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/wall/ttymsg.c b/usr.bin/wall/ttymsg.c index 00ff4b545f9..435f3afd5a4 100644 --- a/usr.bin/wall/ttymsg.c +++ b/usr.bin/wall/ttymsg.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ttymsg.c,v 1.7 2001/09/04 23:35:59 millert Exp $ */ +/* $OpenBSD: ttymsg.c,v 1.8 2001/09/04 23:44:19 millert Exp $ */ /* $NetBSD: ttymsg.c,v 1.3 1994/11/17 07:17:55 jtc Exp $ */ /* @@ -36,9 +36,9 @@ #ifndef lint #if 0 -static char sccsid[] = "@(#)ttymsg.c 8.2 (Berkeley) 11/16/93"; +static const char sccsid[] = "@(#)ttymsg.c 8.2 (Berkeley) 11/16/93"; #endif -static char rcsid[] = "$OpenBSD: ttymsg.c,v 1.7 2001/09/04 23:35:59 millert Exp $"; +static const char rcsid[] = "$OpenBSD: ttymsg.c,v 1.8 2001/09/04 23:44:19 millert Exp $"; #endif /* not lint */ #include <sys/types.h> |