diff options
author | 2003-03-18 03:46:12 +0000 | |
---|---|---|
committer | 2003-03-18 03:46:12 +0000 | |
commit | bcc2f5604ce6f1e8a83fbdc47285d0eff075851d (patch) | |
tree | 615fed15aad679f2b73d0c2e94fd86e1a52e9732 | |
parent | mention namelen in DESCRIPTION (diff) | |
download | wireguard-openbsd-bcc2f5604ce6f1e8a83fbdc47285d0eff075851d.tar.xz wireguard-openbsd-bcc2f5604ce6f1e8a83fbdc47285d0eff075851d.zip |
make rcsid const to pass gcc -Wall
-rw-r--r-- | lib/libcurses/tinfo/read_bsd_terminfo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcurses/tinfo/read_bsd_terminfo.c b/lib/libcurses/tinfo/read_bsd_terminfo.c index 744954ce683..dad636fb4cb 100644 --- a/lib/libcurses/tinfo/read_bsd_terminfo.c +++ b/lib/libcurses/tinfo/read_bsd_terminfo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: read_bsd_terminfo.c,v 1.11 2003/03/17 21:57:57 millert Exp $ */ +/* $OpenBSD: read_bsd_terminfo.c,v 1.12 2003/03/18 03:46:12 millert Exp $ */ /* * Copyright (c) 1998, 1999, 2000 Todd C. Miller <Todd.Miller@courtesan.com> @@ -28,7 +28,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: read_bsd_terminfo.c,v 1.11 2003/03/17 21:57:57 millert Exp $"; +static const char rcsid[] = "$OpenBSD: read_bsd_terminfo.c,v 1.12 2003/03/18 03:46:12 millert Exp $"; #endif #include <curses.priv.h> |