diff options
author | Denis Vlasenko | 2006-11-24 14:53:18 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-11-24 14:53:18 +0000 |
commit | cf30cc82a343802b601f01ae153916887f11eb7b (patch) | |
tree | dd5af380364efe67c7bd302d6c1c6d70f303f959 /coreutils/dd.c | |
parent | 376ce1e775a97a01f1c454497fbe34d326043328 (diff) | |
download | busybox-cf30cc82a343802b601f01ae153916887f11eb7b.zip busybox-cf30cc82a343802b601f01ae153916887f11eb7b.tar.gz |
header_verbose_list: stop truncating file size in listing
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 c0df0b7..96ea32f 100644 --- a/coreutils/dd.c +++ b/coreutils/dd.c @@ -29,8 +29,8 @@ static off_t out_full, out_part, in_full, in_part; static void dd_output_status(int ATTRIBUTE_UNUSED cur_signal) { - fprintf(stderr, "%"OFF_FMT"+%"OFF_FMT" records in\n" - "%"OFF_FMT"+%"OFF_FMT" records out\n", + fprintf(stderr, "%"OFF_FMT"d+%"OFF_FMT"d records in\n" + "%"OFF_FMT"d+%"OFF_FMT"d records out\n", in_full, in_part, out_full, out_part); } |