diff --git a/ChangeLog b/ChangeLog index 61fe9ae49..66b176d6a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-02-22 Pavel Roskin + + * stage2/iso9660.h: Remove unnecessary packed attributes. + 2007-02-22 Robert Millan * util/mkbimage: Update my email address, and remove my name from diff --git a/stage2/iso9660.h b/stage2/iso9660.h index 4a6a8cc60..c311ecf9c 100644 --- a/stage2/iso9660.h +++ b/stage2/iso9660.h @@ -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];