aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-12-17 19:21:13 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-12-17 19:21:13 +0000
commit90832c7bdd7e7130c07da4524ee2960cac3de1ce (patch)
treee312044c18436b9f900e38870bd6d12561ee1be2
parent8bfacfee263ff88dd49ef74e561a832d38fe17a3 (diff)
downloadbusybox-w32-90832c7bdd7e7130c07da4524ee2960cac3de1ce.tar.gz
busybox-w32-90832c7bdd7e7130c07da4524ee2960cac3de1ce.tar.bz2
busybox-w32-90832c7bdd7e7130c07da4524ee2960cac3de1ce.zip
od: remove bug-for-bug compat (because the bug was fixed in coreuitls)
git-svn-id: svn://busybox.net/trunk/busybox@16984 69ca8d6d-28ef-0310-b511-8ec308f3f277
-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)
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
873static void 872static void