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/cp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/cp.c') diff --git a/src/cp.c b/src/cp.c index cc958d192..035526922 100644 --- a/src/cp.c +++ b/src/cp.c @@ -405,7 +405,7 @@ make_dir_parents_private (char const *const_dir, size_t src_offset, slash++; while ((slash = strchr (slash, '/'))) { - struct dir_attr *new IF_LINT (= NULL); + struct dir_attr *new IF_LINT ( = NULL); bool missing_dir; *slash = '\0'; -- cgit v1.2.3-54-g00ecf