diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2008-09-15 20:45:58 +0000 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2008-09-15 20:45:58 +0000 |
commit | 348f82c75978fab7232feacc67ed6fd66fdffa2b (patch) | |
tree | 66bae7d28af69d7b243da151299e2dc0c0620908 /svg | |
parent | d1db6bdd68997ebd4fdd14ee8379211eb1e64474 (diff) |
Fix typo in svg_stroke.
git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@9087 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'svg')
-rw-r--r-- | svg/svgshapes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svg/svgshapes.c b/svg/svgshapes.c index a18ee9500..0c4d2b45b 100644 --- a/svg/svgshapes.c +++ b/svg/svgshapes.c @@ -27,7 +27,7 @@ static void svg_fill(svg_context_t *ctx) static void svg_stroke(svg_context_t *ctx) { svg_set_stroke_color(ctx); - gs_stroke(ctx); + gs_stroke(ctx->pgs); } int |