* include/grub/lvm.h (grub_lvm_pv): Correct start type.

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2011-11-12 23:35:20 +01:00
parent 0cddeb0360
commit 91e5a33da5
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2011-11-12 Vladimir Serbinenko <phcoder@gmail.com>
* include/grub/lvm.h (grub_lvm_pv): Correct start type.
2011-11-12 Vladimir Serbinenko <phcoder@gmail.com>
Fix spaces handling in proc/self/mountinfo.

View File

@ -38,7 +38,7 @@ struct grub_lvm_pv {
char id[GRUB_LVM_ID_STRLEN+1];
char *name;
grub_disk_t disk;
int start; /* Sector number where the data area starts. */
grub_disk_addr_t start; /* Sector number where the data area starts. */
struct grub_lvm_pv *next;
};