diff options
author | Archie Cobbs <archie@FreeBSD.org> | 1998-12-06 22:58:23 +0000 |
---|---|---|
committer | Archie Cobbs <archie@FreeBSD.org> | 1998-12-06 22:58:23 +0000 |
commit | fa146c53357ea20afd3661d8093ea1db44198d5f (patch) | |
tree | a75604be1743b2dbb3ae09ab3f3275f9f1d33d75 /usr.bin/colcrt/colcrt.c | |
parent | 872963ff956b81ce07e442531158371f50388eb4 (diff) | |
download | src-fa146c53357ea20afd3661d8093ea1db44198d5f.tar.gz src-fa146c53357ea20afd3661d8093ea1db44198d5f.zip |
Tweaks to allow compiling -Wall (mostly adding "const" to char rcsid[]).
Notes
Notes:
svn path=/head/; revision=41568
Diffstat (limited to 'usr.bin/colcrt/colcrt.c')
-rw-r--r-- | usr.bin/colcrt/colcrt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/colcrt/colcrt.c b/usr.bin/colcrt/colcrt.c index 40fe5cef49b2..e6dc44543580 100644 --- a/usr.bin/colcrt/colcrt.c +++ b/usr.bin/colcrt/colcrt.c @@ -32,13 +32,13 @@ */ #ifndef lint -static char copyright[] = +static const char copyright[] = "@(#) Copyright (c) 1980, 1993\n\ The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ #ifndef lint -static char sccsid[] = "@(#)colcrt.c 8.1 (Berkeley) 6/6/93"; +static const char sccsid[] = "@(#)colcrt.c 8.1 (Berkeley) 6/6/93"; #endif /* not lint */ #include <err.h> |