diff options
| author | Jim Meyering <meyering@redhat.com> | 2010-05-15 19:36:56 +0200 |
|---|---|---|
| committer | Jim Meyering <meyering@redhat.com> | 2010-05-31 11:02:21 +0200 |
| commit | c0cfa0defe06fa750530f08d6e0a54521f83292d (patch) | |
| tree | 754420e230139c4b21cb87893097c616f0cf3744 /src/expr.c | |
| parent | maint: replace each "for (;;)" with "while (true)" (diff) | |
| download | coreutils-c0cfa0defe06fa750530f08d6e0a54521f83292d.tar.gz coreutils-c0cfa0defe06fa750530f08d6e0a54521f83292d.zip | |
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/expr.c')
| -rw-r--r-- | src/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c index 1ebb4b9d9..dbeaeba89 100644 --- a/src/expr.c +++ b/src/expr.c @@ -547,7 +547,7 @@ trace (fxn) static VALUE * docolon (VALUE *sv, VALUE *pv) { - VALUE *v IF_LINT (= NULL); + VALUE *v IF_LINT ( = NULL); const char *errmsg; struct re_pattern_buffer re_buffer; char fastmap[UCHAR_MAX + 1]; |
