diff options
author | Anil Madhavapeddy <avsm@cvs.openbsd.org> | 2003-05-01 21:11:23 +0000 |
---|---|---|
committer | Anil Madhavapeddy <avsm@cvs.openbsd.org> | 2003-05-01 21:11:23 +0000 |
commit | ba43886222ebe38c78b14183f7471b4555bc4fa7 (patch) | |
tree | 35990a01b9b944facf321c418bbc0b240c9c720d /lib/libedit/hist.c | |
parent | c40b0650f15a53d8399438a443f0eb28fa838b40 (diff) |
is -Wall clean by making rcsid const
Diffstat (limited to 'lib/libedit/hist.c')
-rw-r--r-- | lib/libedit/hist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libedit/hist.c b/lib/libedit/hist.c index b5deda1fbe2..2442dd2f41c 100644 --- a/lib/libedit/hist.c +++ b/lib/libedit/hist.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hist.c,v 1.3 1997/03/14 05:12:48 millert Exp $ */ +/* $OpenBSD: hist.c,v 1.4 2003/05/01 21:11:21 avsm Exp $ */ /* $NetBSD: hist.c,v 1.2 1997/01/11 06:47:55 lukem Exp $ */ /*- @@ -41,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)hist.c 8.1 (Berkeley) 6/4/93"; #else -static char rcsid[] = "$OpenBSD: hist.c,v 1.3 1997/03/14 05:12:48 millert Exp $"; +static const char rcsid[] = "$OpenBSD: hist.c,v 1.4 2003/05/01 21:11:21 avsm Exp $"; #endif #endif /* not lint && not SCCSID */ |