diff options
Diffstat (limited to 'usr.bin/column')
-rw-r--r-- | usr.bin/column/Makefile | 3 | ||||
-rw-r--r-- | usr.bin/column/column.c | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/column/Makefile b/usr.bin/column/Makefile index 33de9f61fe7e..0f53dab1c8dc 100644 --- a/usr.bin/column/Makefile +++ b/usr.bin/column/Makefile @@ -1,6 +1,7 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 +# $FreeBSD$ PROG= column -CFLAGS+=-Wall +WARNS?= 2 .include <bsd.prog.mk> diff --git a/usr.bin/column/column.c b/usr.bin/column/column.c index ae732d2cf853..4a019044576f 100644 --- a/usr.bin/column/column.c +++ b/usr.bin/column/column.c @@ -69,7 +69,7 @@ int entries; /* number of records */ int eval; /* exit value */ int maxlength; /* longest record */ char **list; /* array of pointers to records */ -char *separator = "\t "; /* field separator for table option */ +const char *separator = "\t "; /* field separator for table option */ int main(argc, argv) |