summaryrefslogtreecommitdiff
path: root/src/pr.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2010-05-15 19:36:56 +0200
committerJim Meyering <meyering@redhat.com>2010-05-31 11:02:21 +0200
commitc0cfa0defe06fa750530f08d6e0a54521f83292d (patch)
tree754420e230139c4b21cb87893097c616f0cf3744 /src/pr.c
parentda7a704cd36e1d2015d14247e5139fb1999b2211 (diff)
downloadcoreutils-c0cfa0defe06fa750530f08d6e0a54521f83292d.tar.xz
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 = /'
Diffstat (limited to 'src/pr.c')
-rw-r--r--src/pr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pr.c b/src/pr.c
index 9d4c90f96..f942151a7 100644
--- a/src/pr.c
+++ b/src/pr.c
@@ -2437,7 +2437,7 @@ static bool
read_line (COLUMN *p)
{
int c;
- int chars IF_LINT (= 0);
+ int chars IF_LINT ( = 0);
int last_input_position;
int j, k;
COLUMN *q;