From 031d950cc0b5531461473a70c6b2cfe880e65271 Mon Sep 17 00:00:00 2001 From: Samy Al Bahra Date: Mon, 23 Jul 2012 11:51:22 -0400 Subject: [PATCH] ck_stack: Add aliased attribute to ck_stack for GCC 4.4. --- include/ck_stack.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ck_stack.h b/include/ck_stack.h index 56a39c3..f71e515 100644 --- a/include/ck_stack.h +++ b/include/ck_stack.h @@ -40,7 +40,7 @@ typedef struct ck_stack_entry ck_stack_entry_t; struct ck_stack { struct ck_stack_entry *head; char *generation CK_CC_PACKED; -}; +} CK_CC_ALIASED; typedef struct ck_stack ck_stack_t; #define CK_STACK_INITIALIZER { NULL, NULL }