diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-17 19:21:13 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-17 19:21:13 +0000 |
commit | 0f5905e617818fe36b3760faa885ab55eddde0d8 (patch) | |
tree | e312044c18436b9f900e38870bd6d12561ee1be2 | |
parent | c88894602dc97d3c5d5194b86517a5da5d260612 (diff) | |
download | busybox-0f5905e617818fe36b3760faa885ab55eddde0d8.tar.gz |
od: remove bug-for-bug compat (because the bug was fixed in coreuitls)
-rw-r--r-- | coreutils/od_bloaty.c | 3 |
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 |