summaryrefslogtreecommitdiff
path: root/src/od.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/od.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/od.c')
-rw-r--r--src/od.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/od.c b/src/od.c
index cde3bf951..1d106b1b1 100644
--- a/src/od.c
+++ b/src/od.c
@@ -1513,7 +1513,7 @@ main (int argc, char **argv)
int n_files;
size_t i;
int l_c_m;
- size_t desired_width IF_LINT (= 0);
+ size_t desired_width IF_LINT ( = 0);
bool modern = false;
bool width_specified = false;
bool ok = true;
@@ -1522,7 +1522,7 @@ main (int argc, char **argv)
/* The old-style `pseudo starting address' to be printed in parentheses
after any true address. */
- uintmax_t pseudo_start IF_LINT (= 0);
+ uintmax_t pseudo_start IF_LINT ( = 0);
initialize_main (&argc, &argv);
set_program_name (argv[0]);