sfdisk: get_disksize() returns long long

unsigned long is 4 bytes long on i586, which is not enough for big
HDD's with 512B sectors. Use unsigned long long, which is 8 bytes.

Signed-off-by: Petr Uzel <petr.uzel@suse.cz>
This commit is contained in:
Petr Uzel 2011-09-19 15:29:12 +02:00 committed by Karel Zak
parent 26f0feac99
commit c4730f108e
1 changed files with 3 additions and 3 deletions

View File

@ -928,7 +928,7 @@ unitsize(int format) {
}
}
static unsigned long
static unsigned long long
get_disksize(int format) {
if (B.total_size && leave_last)
/* don't use last cylinder (--leave-last option) */
@ -1266,7 +1266,7 @@ partitions_ok(struct disk_desc *z) {
/* Do they start past zero and end before end-of-disk? */
{
unsigned long ds = get_disksize(F_SECTOR);
unsigned long long ds = get_disksize(F_SECTOR);
for (p = partitions; p < partitions + partno; p++)
if (p->size) {
if (p->start == 0) {
@ -1925,7 +1925,7 @@ first_free(int pno, int is_extended, struct part_desc *ep, int format,
static unsigned long
max_length(int pno, int is_extended, struct part_desc *ep, int format,
unsigned long start, struct disk_desc *z) {
unsigned long fu;
unsigned long long fu;
unsigned long unit = unitsize(format);
struct part_desc *partitions = &(z->partitions[0]), *pp = 0;