diff options
Diffstat (limited to 'disk/part_iso.c')
| -rw-r--r-- | disk/part_iso.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/disk/part_iso.c b/disk/part_iso.c index cc323b099..a050c445e 100644 --- a/disk/part_iso.c +++ b/disk/part_iso.c @@ -249,8 +249,8 @@ void print_part_iso(block_dev_desc_t * dev_desc)  	printf("Part   Start     Sect x Size Type\n");  	i=0;  	do { -		printf (" %2d %8ld %8ld %6ld %.32s\n", -			i, info.start, info.size, info.blksz, info.type); +		printf(" %2d " LBAFU " " LBAFU " %6ld %.32s\n", +		       i, info.start, info.size, info.blksz, info.type);  		i++;  	} while (get_partition_info_iso_verb(dev_desc,i,&info,0)!=-1);  } |