summaryrefslogtreecommitdiff
path: root/content/handlers/html/html.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2020-04-30 22:16:41 +0100
committerVincent Sanders <vince@kyllikki.org>2020-04-30 22:16:41 +0100
commit479d0cb29a74eddc95e3e2292d9d49e8dafdf46f (patch)
tree76f81e7bafc5d60e5dcb3a136b0bfa775e6fbc96 /content/handlers/html/html.c
parent6b6bbad2b7765378b5135a26b3d410d6b0079966 (diff)
downloadnetsurf-479d0cb29a74eddc95e3e2292d9d49e8dafdf46f.tar.gz
netsurf-479d0cb29a74eddc95e3e2292d9d49e8dafdf46f.tar.bz2
remove unused available width and height parameters from html_fecth_object()
Diffstat (limited to 'content/handlers/html/html.c')
-rw-r--r--content/handlers/html/html.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/handlers/html/html.c b/content/handlers/html/html.c
index 01244cc35..72305266c 100644
--- a/content/handlers/html/html.c
+++ b/content/handlers/html/html.c
@@ -687,7 +687,7 @@ static bool html_process_img(html_content *c, dom_node *node)
dom_string_unref(src);
/* Speculatively fetch the image */
- success = html_fetch_object(c, url, NULL, CONTENT_IMAGE, 0, 0, false);
+ success = html_fetch_object(c, url, NULL, CONTENT_IMAGE, false);
nsurl_unref(url);
return success;