summaryrefslogtreecommitdiff
path: root/render/layout.c
diff options
context:
space:
mode:
Diffstat (limited to 'render/layout.c')
-rw-r--r--render/layout.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/render/layout.c b/render/layout.c
index 891fc4283..975c8828f 100644
--- a/render/layout.c
+++ b/render/layout.c
@@ -827,7 +827,7 @@ void layout_minmax_block(struct box *block,
}
if (max < min) {
- box_dump(stderr, block, 0);
+ box_dump(stderr, block, 0, true);
assert(0);
}
@@ -2794,7 +2794,7 @@ bool layout_line(struct box *first, int *width, int *y,
LOG(("float %p already placed", b));
#endif
- box_dump(stderr, cont, 0);
+ box_dump(stderr, cont, 0, true);
assert(0);
}
b->next_float = cont->float_children;
@@ -4139,7 +4139,7 @@ void layout_minmax_table(struct box *table,
for (i = 0; i != table->columns; i++) {
if (col[i].max < col[i].min) {
- box_dump(stderr, table, 0);
+ box_dump(stderr, table, 0, true);
assert(0);
}
table_min += col[i].min;