From 1a0333565f1a89d87b36e7a5c83bac9c145a9916 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Thu, 16 Nov 2006 19:51:23 +0100 Subject: * bootstrap.conf (gnulib_modules): Add sys_stat, since we use it directly too. * lib/.cvsignore, lib/.gitignore: Add root-dev-ino.c, root-dev-ino.h. * m4/.cvsignore, m4/.gitignore: Add root-dev-ino.m4. * src/ls.c (DIRED_FPUTS_LITERAL, PUSH_CURRENT_DIRED_POS): Omit unnecessary parenthesization of args. * src/od.c (EQUAL_BLOCKS): Likewise. * src/system.h (STREQ, ASSIGN_STRDUPA): Likewise. --- src/od.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/od.c') diff --git a/src/od.c b/src/od.c index 19871d312..b358a0f15 100644 --- a/src/od.c +++ b/src/od.c @@ -1175,7 +1175,7 @@ write_block (uintmax_t current_offset, size_t n_bytes, static bool first = true; static bool prev_pair_equal = false; -#define EQUAL_BLOCKS(b1, b2) (memcmp ((b1), (b2), bytes_per_block) == 0) +#define EQUAL_BLOCKS(b1, b2) (memcmp (b1, b2, bytes_per_block) == 0) if (abbreviate_duplicate_blocks && !first && n_bytes == bytes_per_block -- cgit v1.2.3-54-g00ecf