diff options
author | Denys Vlasenko | 2018-05-26 18:51:18 +0200 |
---|---|---|
committer | Denys Vlasenko | 2018-05-26 18:51:18 +0200 |
commit | 8bc418f07eab79a9c8d26594629799f6157a9466 (patch) | |
tree | f1db13fe3cfe67c893a18f4b0fd9d54c31eb2435 /util-linux/fdisk.c | |
parent | bf7f103ffb6e2644e9c063cba723e25635c14a52 (diff) | |
download | busybox-8bc418f07eab79a9c8d26594629799f6157a9466.zip busybox-8bc418f07eab79a9c8d26594629799f6157a9466.tar.gz |
fdisk: remove "Partition N does not end on cylinder boundary" message
fdisk from util-linux 2.31 (maybe earlier) does not print this.
function old new delta
check_consistency 449 399 -50
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/fdisk.c')
-rw-r--r-- | util-linux/fdisk.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c index 7275535..cdcba0a 100644 --- a/util-linux/fdisk.c +++ b/util-linux/fdisk.c @@ -2004,12 +2004,6 @@ check_consistency(const struct partition *p, int partition) printf(" phys=(%u,%u,%u) ", pec, peh, pes); printf("logical=(%u,%u,%u)\n", lec, leh, les); } - -/* Ending on cylinder boundary? */ - if (peh != (g_heads - 1) || pes != g_sectors) { - printf("Partition %u does not end on cylinder boundary\n", - partition + 1); - } } static void |