From bcdc82df70b61020d3451a2a0f96dd36ec83ec85 Mon Sep 17 00:00:00 2001 From: Mark Murray Date: Sun, 2 Dec 2001 13:18:59 +0000 Subject: WARNS=2 fixup. --- usr.bin/column/Makefile | 3 ++- usr.bin/column/column.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'usr.bin/column') 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 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) -- cgit v1.2.3