diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-03-18 03:46:13 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-03-18 03:46:13 +0000 |
commit | 98cb293b5738ecfcfce070677c554c5cd6ee984b (patch) | |
tree | fca7dcefb5188ecef8927e2f0bda276e7f45349f /lib/libcurses | |
parent | 9388e31a94ee81b61d3eef043f7fe8ecab570ddc (diff) |
make rcsid const to pass gcc -Wall
Diffstat (limited to 'lib/libcurses')
-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> |