diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-02-04 15:00:15 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-02-04 15:00:15 +0100 |
commit | 98a4c7cf3d799ab953cb77e8b34597c73e3e7335 (patch) | |
tree | 2d9c07825697cd7c6e96647ff0992dce4d4a0115 /selinux | |
parent | 1821d188ca674b42bf0f384b0c2332ff95701bba (diff) | |
download | busybox-w32-98a4c7cf3d799ab953cb77e8b34597c73e3e7335.tar.gz busybox-w32-98a4c7cf3d799ab953cb77e8b34597c73e3e7335.tar.bz2 busybox-w32-98a4c7cf3d799ab953cb77e8b34597c73e3e7335.zip |
*: suppress ~60% of "aliased warnings" on gcc-4.4.1
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'selinux')
-rw-r--r-- | selinux/setfiles.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/selinux/setfiles.c b/selinux/setfiles.c index 4686d8042..f45e41b2b 100644 --- a/selinux/setfiles.c +++ b/selinux/setfiles.c | |||
@@ -35,8 +35,7 @@ struct globals { | |||
35 | dev_t dev_id; /* Device id where target file exists */ | 35 | dev_t dev_id; /* Device id where target file exists */ |
36 | int nerr; | 36 | int nerr; |
37 | struct edir excludeArray[MAX_EXCLUDES]; | 37 | struct edir excludeArray[MAX_EXCLUDES]; |
38 | }; | 38 | } FIX_ALIASING; |
39 | |||
40 | #define G (*(struct globals*)&bb_common_bufsiz1) | 39 | #define G (*(struct globals*)&bb_common_bufsiz1) |
41 | void BUG_setfiles_globals_too_big(void); | 40 | void BUG_setfiles_globals_too_big(void); |
42 | #define INIT_G() do { \ | 41 | #define INIT_G() do { \ |