summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2010-07-16 17:56:33 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2010-07-16 17:56:33 +0000
commit2a286962f783ddbd7506c972afff131fad956563 (patch)
tree8479e3e55f809703f825c96b4e29a5346e45530a
parent17aacbec023d9cae25071a92187c01c46b5489ba (diff)
downloadnetsurf-2a286962f783ddbd7506c972afff131fad956563.tar.gz
netsurf-2a286962f783ddbd7506c972afff131fad956563.tar.bz2
Fix build when layout logging is enabled.
svn path=/trunk/netsurf/; revision=10649
-rw-r--r--render/layout.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/render/layout.c b/render/layout.c
index 93ac2503e..6107544de 100644
--- a/render/layout.c
+++ b/render/layout.c
@@ -804,8 +804,8 @@ bool layout_block_object(struct box *block)
block->type == BOX_TABLE_CELL);
assert(block->object);
- LOG(("block %p, object %s, width %i", block, block->object->url,
- block->width));
+ LOG(("block %p, object %s, width %i", block,
+ content_get_url(block->object), block->width));
if (content_get_type(block->object) == CONTENT_HTML) {
content_reformat(block->object, block->width, 1);