From: Davidlohr Bueso Date: Mon, 26 Nov 2012 04:29:12 +0000 (-0800) Subject: fdisk: remove dead code X-Git-Tag: v2.23-rc1~466 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5759a4a22bb3d05898a6853702d9ea90b5834ba4;p=thirdparty%2Futil-linux.git fdisk: remove dead code Signed-off-by: Davidlohr Bueso --- diff --git a/fdisks/fdisk.c b/fdisks/fdisk.c index 5683307b3d..d9e4f62d06 100644 --- a/fdisks/fdisk.c +++ b/fdisks/fdisk.c @@ -352,15 +352,6 @@ sector_t align_lba(struct fdisk_context *cxt, sector_t lba, int direction) } } - /*** - fprintf(stderr, "LBA %llu (%s) --align-(%s)--> %llu (%s)\n", - lba, - lba_is_aligned(lba) ? "OK" : "FALSE", - direction == ALIGN_UP ? "UP " : - direction == ALIGN_DOWN ? "DOWN " : "NEAREST", - res, - lba_is_aligned(res) ? "OK" : "FALSE"); - ***/ return res; }