diff options
Diffstat (limited to 'graphics/librsvg2/files/patch-rsvg-shapes.c')
-rw-r--r-- | graphics/librsvg2/files/patch-rsvg-shapes.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/graphics/librsvg2/files/patch-rsvg-shapes.c b/graphics/librsvg2/files/patch-rsvg-shapes.c index d91bf5083..db42d9f45 100644 --- a/graphics/librsvg2/files/patch-rsvg-shapes.c +++ b/graphics/librsvg2/files/patch-rsvg-shapes.c @@ -1,17 +1,18 @@ ---- rsvg-shapes.c.orig Thu Aug 25 22:32:03 2005 -+++ rsvg-shapes.c Thu Aug 25 22:32:13 2005 -@@ -145,12 +145,12 @@ _rsvg_node_poly_draw(RsvgNode * self, Rs +--- rsvg-shapes.c.orig Tue Jul 19 23:47:27 2005 ++++ rsvg-shapes.c Fri Sep 9 12:34:17 2005 +@@ -145,12 +145,13 @@ int dominate) { RsvgNodePoly * poly = (RsvgNodePoly *)self; + gsize i; -+ GString * d = g_string_new (""); ++ GString * d; /* represent as a "moveto, lineto*, close" path */ if (poly->pointlist_len < 2) return; - gsize i; - GString * d = g_string_new (""); ++ d = g_string_new (""); g_string_append_printf (d, "M %f %f ", poly->pointlist[0], poly->pointlist[1] ); for (i = 2; i < poly->pointlist_len; i += 2) |