diff options
author | archie <archie@FreeBSD.org> | 1998-12-06 22:58:23 +0000 |
---|---|---|
committer | archie <archie@FreeBSD.org> | 1998-12-06 22:58:23 +0000 |
commit | 167c036e91fb24a62d627d16a2f3afa6d875c9e2 (patch) | |
tree | e40a696092a51458b052ff258b3700d51fc2ca09 /usr.bin/expand | |
parent | 3f56407712318be6faa0b98ad8db4b5a83ef4c93 (diff) | |
download | FreeBSD-src-167c036e91fb24a62d627d16a2f3afa6d875c9e2.zip FreeBSD-src-167c036e91fb24a62d627d16a2f3afa6d875c9e2.tar.gz |
Tweaks to allow compiling -Wall (mostly adding "const" to char rcsid[]).
Diffstat (limited to 'usr.bin/expand')
-rw-r--r-- | usr.bin/expand/Makefile | 1 | ||||
-rw-r--r-- | usr.bin/expand/expand.c | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/expand/Makefile b/usr.bin/expand/Makefile index 751df25..8e1369c 100644 --- a/usr.bin/expand/Makefile +++ b/usr.bin/expand/Makefile @@ -1,6 +1,7 @@ # @(#)Makefile 8.1 (Berkeley) 6/9/93 PROG= expand +CFLAGS+=-Wall MLINKS= expand.1 unexpand.1 .include <bsd.prog.mk> diff --git a/usr.bin/expand/expand.c b/usr.bin/expand/expand.c index 37c9464..a8014f9 100644 --- a/usr.bin/expand/expand.c +++ b/usr.bin/expand/expand.c @@ -32,7 +32,7 @@ */ #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 */ @@ -42,7 +42,7 @@ static char copyright[] = static char sccsid[] = "@(#)expand.c 8.1 (Berkeley) 6/9/93"; #else static const char rcsid[] = - "$Id: expand.c,v 1.2 1997/07/01 06:34:31 charnier Exp $"; + "$Id: expand.c,v 1.3 1998/02/02 07:10:59 cwt Exp $"; #endif #endif /* not lint */ |