summaryrefslogtreecommitdiff
path: root/image
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2010-03-30 18:12:21 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2010-03-30 18:12:21 +0000
commit07537e5240bcff837cf19f25454f2a6c72a52da1 (patch)
tree4d59fb1d98ae1c0cf781a143b7a8acd336530358 /image
parentb890b79254cbc210c3a1b5dda421b44b502829ed (diff)
downloadnetsurf-07537e5240bcff837cf19f25454f2a6c72a52da1.tar.gz
netsurf-07537e5240bcff837cf19f25454f2a6c72a52da1.tar.bz2
Fix compilation when building WITH_NS_SVG
svn path=/trunk/netsurf/; revision=10213
Diffstat (limited to 'image')
-rw-r--r--image/svg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/image/svg.c b/image/svg.c
index 4df4ed80b..fce246588 100644
--- a/image/svg.c
+++ b/image/svg.c
@@ -92,7 +92,7 @@ void svg_reformat(struct content *c, int width, int height)
source_data = content__get_source_data(c, &source_size);
svgtiny_parse(c->data.svg.diagram, source_data, source_size,
- content__get_url(c), w, h);
+ content__get_url(c), width, height);
c->data.svg.done_parse = true;
}