From: Vladimir 'phcoder' Serbinenko Date: Sat, 12 Nov 2011 22:35:20 +0000 (+0100) Subject: * include/grub/lvm.h (grub_lvm_pv): Correct start type. X-Git-Tag: 2.00~945 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=91e5a33da510d7e48e35c76f54f8ff3b53c19c0e;p=thirdparty%2Fgrub.git * include/grub/lvm.h (grub_lvm_pv): Correct start type. --- diff --git a/ChangeLog b/ChangeLog index ab253ddfd..9f5b71fe4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2011-11-12 Vladimir Serbinenko + + * include/grub/lvm.h (grub_lvm_pv): Correct start type. + 2011-11-12 Vladimir Serbinenko Fix spaces handling in proc/self/mountinfo. diff --git a/include/grub/lvm.h b/include/grub/lvm.h index b5352c75c..d77b88ff5 100644 --- a/include/grub/lvm.h +++ b/include/grub/lvm.h @@ -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; };