From db9e364bb11233efb0c4420684972a6be389b837 Mon Sep 17 00:00:00 2001 From: Robin Watts Date: Thu, 16 Apr 2015 00:26:56 +0100 Subject: Fix typo in html-layout.c The find_accumulated_margins function should be a void return type. --- source/html/html-layout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/html') diff --git a/source/html/html-layout.c b/source/html/html-layout.c index 7f2472f3..157c8685 100644 --- a/source/html/html-layout.c +++ b/source/html/html-layout.c @@ -493,7 +493,7 @@ static fz_html_flow *find_next_word(fz_html_flow *node, float *w) return node; } -static float find_accumulated_margins(fz_context *ctx, fz_html *box, float *w, float *h) +static void find_accumulated_margins(fz_context *ctx, fz_html *box, float *w, float *h) { while (box) { -- cgit v1.2.3