summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2011-04-01 20:55:09 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2011-04-01 20:55:09 +0000
commitd2ea50ba7e444670939390106f4802288566da3a (patch)
treee38b983936a284c827f9ddf55fd7340b272277c4
parentfc18fccd5ed2050a05cad53714f429a529253711 (diff)
downloadlibcss-d2ea50ba7e444670939390106f4802288566da3a.tar.gz
libcss-d2ea50ba7e444670939390106f4802288566da3a.tar.bz2
Use _ALIGNED to stop gcc complaining about casts increasing alignment requirements on ARM platforms
svn path=/trunk/libcss/; revision=12149
-rw-r--r--src/stylesheet.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stylesheet.h b/src/stylesheet.h
index 6333d76..0dbc487 100644
--- a/src/stylesheet.h
+++ b/src/stylesheet.h
@@ -120,7 +120,7 @@ struct css_rule {
index : 16, /**< index in sheet */
items : 8, /**< # items in rule */
ptype : 1; /**< css_rule_parent_type */
-};
+} _ALIGNED;
typedef struct css_rule_selector {
css_rule base;