diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-04-06 16:56:33 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-04-06 16:56:33 +0200 |
commit | fcad7681f8a835f5c7b2093da505f46865a89d25 (patch) | |
tree | c827f9570a8bfb6642b217194f481a0959804139 | |
parent | 5ab6b0f5639d962f252fc66516b2856f6e17490b (diff) | |
download | busybox-w32-fcad7681f8a835f5c7b2093da505f46865a89d25.tar.gz busybox-w32-fcad7681f8a835f5c7b2093da505f46865a89d25.tar.bz2 busybox-w32-fcad7681f8a835f5c7b2093da505f46865a89d25.zip |
fdisk: make comment more clear
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | util-linux/fdisk.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c index 06fb7f9b0..8e133178d 100644 --- a/util-linux/fdisk.c +++ b/util-linux/fdisk.c | |||
@@ -2598,8 +2598,7 @@ move_begin(unsigned i) | |||
2598 | printf("Partition %u has no data area\n", i + 1); | 2598 | printf("Partition %u has no data area\n", i + 1); |
2599 | return; | 2599 | return; |
2600 | } | 2600 | } |
2601 | first = get_partition_start_from_dev_start(pe); | 2601 | first = get_partition_start_from_dev_start(pe); /* == pe->offset_from_dev_start + get_start_sect(p) */ |
2602 | /* == pe->offset_from_dev_start + get_start_sect(p) */ | ||
2603 | new = read_int(0 /*was:first*/, first, first + nr_sects - 1, first, "New beginning of data"); | 2602 | new = read_int(0 /*was:first*/, first, first + nr_sects - 1, first, "New beginning of data"); |
2604 | if (new != first) { | 2603 | if (new != first) { |
2605 | sector_t new_relative = new - pe->offset_from_dev_start; | 2604 | sector_t new_relative = new - pe->offset_from_dev_start; |