]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* stage2/iso9660.h: Remove unnecessary packed attributes.
authorproski <proski@localhost>
Thu, 22 Feb 2007 23:40:25 +0000 (23:40 +0000)
committerproski <proski@localhost>
Thu, 22 Feb 2007 23:40:25 +0000 (23:40 +0000)
ChangeLog
stage2/iso9660.h

index 61fe9ae49b1741c034873480403c6818c51832c6..66b176d6a8900022bf3dadd2801bc2ca55a62d14 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-02-22  Pavel Roskin  <proski@gnu.org>
+
+       * stage2/iso9660.h: Remove unnecessary packed attributes.
+
 2007-02-22  Robert Millan  <rmh@aybabtu.com>
 
        * util/mkbimage: Update my email address, and remove my name from
index 4a6a8cc60ab25e05e71624e49730bed83dafc436..c311ecf9c2bdfaddff772838311e7353ed3da98c 100644 (file)
@@ -73,11 +73,11 @@ typedef     union {
 
 typedef        struct __iso_16bit {
   u_int16_t l, b;
-} iso_16bit_t __attribute__ ((packed));
+} iso_16bit_t;
 
 typedef        struct __iso_32bit {
   u_int32_t l, b;
-} iso_32bit_t __attribute__ ((packed));
+} iso_32bit_t;
 
 typedef u_int8_t               iso_date_t[7];