remove a few aliasing warnings
authorDenys Vlasenko <vda.linux@googlemail.com>
Sun, 16 Jan 2011 10:21:15 +0000 (11:21 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Sun, 16 Jan 2011 10:21:15 +0000 (11:21 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
procps/free.c
procps/fuser.c

index efbac5ba63df4008b44b12f2328f7f455788f6c3..ad8711f8a08d0cbe64bb8b2abe999ff719ce69ef 100644 (file)
@@ -19,7 +19,7 @@ struct globals {
 #else
 # define G_unit_steps 10
 #endif
-};
+} FIX_ALIASING;
 #define G (*(struct globals*)&bb_common_bufsiz1)
 #define INIT_G() do { } while (0)
 
index addf1a7d83c1ec4c5ea103be85fb46912d7f0873..a1b93d77fe9fcadbff0097467000248f14822b09 100644 (file)
@@ -35,7 +35,7 @@ typedef struct pid_list {
 struct globals {
        pid_list *pid_list_head;
        inode_list *inode_list_head;
-};
+} FIX_ALIASING;
 #define G (*(struct globals*)&bb_common_bufsiz1)
 #define INIT_G() do { } while (0)