From f22da7670d22d17337c1a2aebb924305b08ede2c Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Wed, 3 Oct 2012 19:41:14 +0100 Subject: fix missing sizeof() in amiga build fix type warning by passing correct value --- render/box_construct.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'render') diff --git a/render/box_construct.c b/render/box_construct.c index c34c0af96..8b54fc8d4 100644 --- a/render/box_construct.c +++ b/render/box_construct.c @@ -2050,7 +2050,7 @@ bool box_frameset(BOX_SPECIAL_PARAMS) if (!content->frameset) return false; - ok = box_create_frameset(content->frameset, n, content->bctx); + ok = box_create_frameset(content->frameset, n, content); if (ok) box->type = BOX_NONE; -- cgit v1.2.3