summaryrefslogtreecommitdiff
path: root/src/select/computed.h
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2014-06-01 22:21:55 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2014-06-01 22:21:55 +0100
commit096d136937c18e9a588f3b6df66293cecfb5cdaa (patch)
tree9ca927a2cf7c252ab56ec7ceed22fd5f8a228975 /src/select/computed.h
parentc6d7f24987a90bc61e408c4249a6a212276b4174 (diff)
downloadlibcss-096d136937c18e9a588f3b6df66293cecfb5cdaa.tar.gz
libcss-096d136937c18e9a588f3b6df66293cecfb5cdaa.tar.bz2
Length of computed bits array has increased by one byte.
Reduce unused bytes from 2 to 1.
Diffstat (limited to 'src/select/computed.h')
-rw-r--r--src/select/computed.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/select/computed.h b/src/select/computed.h
index ed9141f..e7f3742 100644
--- a/src/select/computed.h
+++ b/src/select/computed.h
@@ -233,9 +233,9 @@ struct css_computed_style {
* 34 vvlltttt visibility | list-style-position | text-align
* 35 yyy..... overflow-y | <unused>
*/
- uint8_t bits[34];
+ uint8_t bits[35];
- uint8_t unused[2];
+ uint8_t unused[1];
css_color background_color;
lwc_string *background_image;