summaryrefslogtreecommitdiff
path: root/render/box.c
diff options
context:
space:
mode:
Diffstat (limited to 'render/box.c')
-rw-r--r--render/box.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/render/box.c b/render/box.c
index 9021f3842..0f73cbe57 100644
--- a/render/box.c
+++ b/render/box.c
@@ -131,6 +131,7 @@ struct box * box_create(css_select_results *styles, css_computed_style *style,
talloc_set_destructor(box, free_box_style);
box->type = BOX_INLINE;
+ box->flags = 0;
box->styles = styles;
box->style = style;
box->style_owned = style_owned;
@@ -156,7 +157,6 @@ struct box * box_create(css_select_results *styles, css_computed_style *style,
box->columns = 1;
box->rows = 1;
box->start_column = 0;
- box->inline_new_line = false;
box->printed = false;
box->next = NULL;
box->prev = NULL;