summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2004-06-11 17:54:47 +0000
committerJeremy Katz <katzj@redhat.com>2004-06-11 17:54:47 +0000
commit109165b6b0618e31f39cc073249538287c7c4e6a (patch)
treef704a86084d42156a6cb1964fdd8c311b0d5c1e4
parenta19bf2194aeefced3f66ff51dd5c875678733a1f (diff)
downloadanaconda-109165b6b0618e31f39cc073249538287c7c4e6a.tar.gz
anaconda-109165b6b0618e31f39cc073249538287c7c4e6a.tar.xz
anaconda-109165b6b0618e31f39cc073249538287c7c4e6a.zip
fix for new warnings in gcc 3.4
smp.c:256: warning: `__packed__' attribute ignored
-rw-r--r--isys/smp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/isys/smp.c b/isys/smp.c
index e193ae70a..1a84776fa 100644
--- a/isys/smp.c
+++ b/isys/smp.c
@@ -225,7 +225,7 @@ typedef struct MPFPS {
u_char mpfb3;
u_char mpfb4;
u_char mpfb5;
-} mpfps_t __attribute__ ((__packed__));
+} mpfps_t;
/* MP Configuration Table Header */
typedef struct MPCTH {
@@ -242,7 +242,7 @@ typedef struct MPCTH {
uint16_t extended_table_length;
u_char extended_table_checksum;
u_char reserved;
-} mpcth_t __attribute__ ((__packed__));
+} mpcth_t;
typedef struct PROCENTRY {
u_char type;
@@ -253,7 +253,7 @@ typedef struct PROCENTRY {
uint32_t featureFlags;
uint32_t reserved1;
uint32_t reserved2;
-} ProcEntry __attribute__ ((__packed__));
+} ProcEntry;
#define PROCENTRY_FLAG_EN 0x01