summaryrefslogtreecommitdiff
path: root/render/box.c
diff options
context:
space:
mode:
Diffstat (limited to 'render/box.c')
-rw-r--r--render/box.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/render/box.c b/render/box.c
index 9aadcda86..cddcb022b 100644
--- a/render/box.c
+++ b/render/box.c
@@ -594,10 +594,13 @@ void box_dump(FILE *stream, struct box *box, unsigned int depth)
if (box->col) {
fprintf(stream, " (columns");
for (i = 0; i != box->columns; i++)
- fprintf(stream, " (%s %i %i %i)",
+ fprintf(stream, " (%s %s %i %i %i)",
((const char *[]) {"UNKNOWN", "FIXED",
"AUTO", "PERCENT", "RELATIVE"})
[box->col[i].type],
+ ((const char *[]) {"normal",
+ "positioned"})
+ [box->col[i].positioned],
box->col[i].width,
box->col[i].min, box->col[i].max);
fprintf(stream, ")");