From c0cfa0defe06fa750530f08d6e0a54521f83292d Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 15 May 2010 19:36:56 +0200 Subject: maint: make spacing around "=" consistent, even in IF_LINT E.g., - size_t desired_width IF_LINT (= 0); + size_t desired_width IF_LINT ( = 0); Use this command: g grep -l IF_LINT | grep '\.[ch]$' \ | xargs perl -pi -e 's/(IF_LINT \()= /$1 = /' --- src/uniq.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/uniq.c') diff --git a/src/uniq.c b/src/uniq.c index 1f594697e..df59b1234 100644 --- a/src/uniq.c +++ b/src/uniq.c @@ -301,8 +301,8 @@ check_file (const char *infile, const char *outfile, char delimiter) if (output_unique && output_first_repeated && countmode == count_none) { - char *prevfield IF_LINT (= NULL); - size_t prevlen IF_LINT (= 0); + char *prevfield IF_LINT ( = NULL); + size_t prevlen IF_LINT ( = 0); while (!feof (stdin)) { -- cgit v1.2.3-54-g00ecf