From 096d136937c18e9a588f3b6df66293cecfb5cdaa Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sun, 1 Jun 2014 22:21:55 +0100 Subject: Length of computed bits array has increased by one byte. Reduce unused bytes from 2 to 1. --- src/select/computed.h | 4 ++-- 1 file 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 | */ - uint8_t bits[34]; + uint8_t bits[35]; - uint8_t unused[2]; + uint8_t unused[1]; css_color background_color; lwc_string *background_image; -- cgit v1.2.3