diff options
Diffstat (limited to 'include/part.h')
| -rw-r--r-- | include/part.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/include/part.h b/include/part.h index 35c1c5b5f..8e31e75a6 100644 --- a/include/part.h +++ b/include/part.h @@ -97,8 +97,8 @@ typedef struct block_dev_desc {  #define DEV_TYPE_OPDISK		0x07	/* optical disk */  typedef struct disk_partition { -	ulong	start;		/* # of first block in partition	*/ -	ulong	size;		/* number of blocks in partition	*/ +	lbaint_t	start;	/* # of first block in partition	*/ +	lbaint_t	size;	/* number of blocks in partition	*/  	ulong	blksz;		/* block size in bytes			*/  	uchar	name[32];	/* partition name			*/  	uchar	type[32];	/* string type description		*/ |