aboutsummaryrefslogtreecommitdiff
path: root/coreutils/od_bloaty.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-12-17 19:21:13 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-12-17 19:21:13 +0000
commit0f5905e617818fe36b3760faa885ab55eddde0d8 (patch)
treee312044c18436b9f900e38870bd6d12561ee1be2 /coreutils/od_bloaty.c
parentc88894602dc97d3c5d5194b86517a5da5d260612 (diff)
downloadbusybox-0f5905e617818fe36b3760faa885ab55eddde0d8.tar.gz
od: remove bug-for-bug compat (because the bug was fixed in coreuitls)
Diffstat (limited to 'coreutils/od_bloaty.c')
-rw-r--r--coreutils/od_bloaty.c3
1 files changed, 1 insertions, 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