summaryrefslogtreecommitdiff
path: root/source/svg
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@gmail.com>2016-09-17 21:08:52 +0800
committerSebastian Rasmussen <sebras@gmail.com>2016-09-18 12:42:39 +0800
commit6c170bfbf597eee8fe9b749f834ae9fe8841d454 (patch)
tree2d1e713c8cf05433f5d48d19054995aff36c458d /source/svg
parentc76f6c6808b6610a35a27a7843afb393b333f78f (diff)
downloadmupdf-6c170bfbf597eee8fe9b749f834ae9fe8841d454.tar.xz
svg: Fix typo in opacity attribute variable name.
Diffstat (limited to 'source/svg')
-rw-r--r--source/svg/svg-run.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/svg/svg-run.c b/source/svg/svg-run.c
index 602b0a80..f0427341 100644
--- a/source/svg/svg-run.c
+++ b/source/svg/svg-run.c
@@ -691,7 +691,7 @@ svg_parse_common(fz_context *ctx, svg_document *doc, fz_xml *node, svg_state *st
if (opacity_att)
{
- state->opacity = svg_parse_number(fill_opacity_att, 0, 1, state->opacity);
+ state->opacity = svg_parse_number(opacity_att, 0, 1, state->opacity);
}
if (fill_att)