diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-11-24 14:53:18 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-11-24 14:53:18 +0000 |
commit | 23ea869996347496687d5c7669bc555aca3fb1a5 (patch) | |
tree | dd5af380364efe67c7bd302d6c1c6d70f303f959 /coreutils/dd.c | |
parent | f84ffb695adc5637e124f2f7398c1702624517e0 (diff) | |
download | busybox-w32-23ea869996347496687d5c7669bc555aca3fb1a5.tar.gz busybox-w32-23ea869996347496687d5c7669bc555aca3fb1a5.tar.bz2 busybox-w32-23ea869996347496687d5c7669bc555aca3fb1a5.zip |
header_verbose_list: stop truncating file size in listing
git-svn-id: svn://busybox.net/trunk/busybox@16651 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/dd.c')
-rw-r--r-- | coreutils/dd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/dd.c b/coreutils/dd.c index c0df0b75c..96ea32f06 100644 --- a/coreutils/dd.c +++ b/coreutils/dd.c | |||
@@ -29,8 +29,8 @@ static off_t out_full, out_part, in_full, in_part; | |||
29 | 29 | ||
30 | static void dd_output_status(int ATTRIBUTE_UNUSED cur_signal) | 30 | static void dd_output_status(int ATTRIBUTE_UNUSED cur_signal) |
31 | { | 31 | { |
32 | fprintf(stderr, "%"OFF_FMT"+%"OFF_FMT" records in\n" | 32 | fprintf(stderr, "%"OFF_FMT"d+%"OFF_FMT"d records in\n" |
33 | "%"OFF_FMT"+%"OFF_FMT" records out\n", | 33 | "%"OFF_FMT"d+%"OFF_FMT"d records out\n", |
34 | in_full, in_part, | 34 | in_full, in_part, |
35 | out_full, out_part); | 35 | out_full, out_part); |
36 | } | 36 | } |