diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-27 09:34:22 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-27 09:34:22 +0000 |
commit | 25d806212806b5077a38777aaf8d5c622a8b9dd9 (patch) | |
tree | ddac563b48f199d0b3460621dd16626c1d69dee5 /util-linux | |
parent | b54b208d90e1ad7d338f3c3478e8ad7443a2c356 (diff) | |
download | busybox-25d806212806b5077a38777aaf8d5c622a8b9dd9.tar.gz |
top: batch mode should output all processes
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 adfd4d698..4749c1bd8 100644 --- a/util-linux/fdisk.c +++ b/util-linux/fdisk.c @@ -2277,7 +2277,7 @@ add_partition(int n, int sys) if (start > limit) break; if (start >= temp+units_per_sector && num_read) { - printf(_("Sector %llu is already allocated\n"), (unsigned long long)temp); + printf(_("Sector "OFF_T_FMT" is already allocated\n"), temp); temp = start; num_read = 0; } |