diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-24 14:53:18 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-24 14:53:18 +0000 |
commit | cf30cc82a343802b601f01ae153916887f11eb7b (patch) | |
tree | dd5af380364efe67c7bd302d6c1c6d70f303f959 /util-linux | |
parent | 376ce1e775a97a01f1c454497fbe34d326043328 (diff) | |
download | busybox-w32-cf30cc82a343802b601f01ae153916887f11eb7b.tar.gz busybox-w32-cf30cc82a343802b601f01ae153916887f11eb7b.tar.bz2 busybox-w32-cf30cc82a343802b601f01ae153916887f11eb7b.zip |
header_verbose_list: stop truncating file size in listing
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/fdisk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c index bd2f1e87f..74c7710da 100644 --- a/util-linux/fdisk.c +++ b/util-linux/fdisk.c | |||
@@ -2277,7 +2277,7 @@ add_partition(int n, int sys) | |||
2277 | if (start > limit) | 2277 | if (start > limit) |
2278 | break; | 2278 | break; |
2279 | if (start >= temp+units_per_sector && num_read) { | 2279 | if (start >= temp+units_per_sector && num_read) { |
2280 | printf(_("Sector %"OFF_FMT" is already allocated\n"), temp); | 2280 | printf(_("Sector %"OFF_FMT"d is already allocated\n"), temp); |
2281 | temp = start; | 2281 | temp = start; |
2282 | num_read = 0; | 2282 | num_read = 0; |
2283 | } | 2283 | } |