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-w32-0f5905e617818fe36b3760faa885ab55eddde0d8.tar.gz busybox-w32-0f5905e617818fe36b3760faa885ab55eddde0d8.tar.bz2 busybox-w32-0f5905e617818fe36b3760faa885ab55eddde0d8.zip |
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) | |||
866 | { | 866 | { |
867 | putchar('('); | 867 | putchar('('); |
868 | format_address_std(address, ')'); | 868 | format_address_std(address, ')'); |
869 | /* BUG in coreutils 5.2.1! must be "if (c) putchar(c);" */ | 869 | if (c) putchar(c); |
870 | putchar(c); | ||
871 | } | 870 | } |
872 | 871 | ||
873 | static void | 872 | static void |