header_verbose_list: stop truncating file size in listing

This commit is contained in:
Denis Vlasenko
2006-11-24 14:53:18 +00:00
parent 376ce1e775
commit cf30cc82a3
10 changed files with 42 additions and 43 deletions

View File

@@ -2277,7 +2277,7 @@ add_partition(int n, int sys)
if (start > limit)
break;
if (start >= temp+units_per_sector && num_read) {
printf(_("Sector %"OFF_FMT" is already allocated\n"), temp);
printf(_("Sector %"OFF_FMT"d is already allocated\n"), temp);
temp = start;
num_read = 0;
}