* stage2/iso9660.h: Remove unnecessary packed attributes.

This commit is contained in:
proski 2007-02-22 23:40:25 +00:00
parent 1d99c80935
commit 22cd659922
2 changed files with 6 additions and 2 deletions

View file

@ -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

View 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];