From 0f5905e617818fe36b3760faa885ab55eddde0d8 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sun, 17 Dec 2006 19:21:13 +0000 Subject: [PATCH] od: remove bug-for-bug compat (because the bug was fixed in coreuitls) --- coreutils/od_bloaty.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/coreutils/od_bloaty.c b/coreutils/od_bloaty.c index 9f1a582ef..bd9f92536 100644 --- a/coreutils/od_bloaty.c +++ b/coreutils/od_bloaty.c @@ -866,8 +866,7 @@ format_address_paren(off_t address, char c) { putchar('('); format_address_std(address, ')'); - /* BUG in coreutils 5.2.1! must be "if (c) putchar(c);" */ - putchar(c); + if (c) putchar(c); } static void -- 2.25.1