From 22cd659922f53072486ccda5a3c17713c3e76e1b Mon Sep 17 00:00:00 2001 From: proski Date: Thu, 22 Feb 2007 23:40:25 +0000 Subject: [PATCH] * stage2/iso9660.h: Remove unnecessary packed attributes. --- ChangeLog | 4 ++++ stage2/iso9660.h | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) 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];