[gs-cvs] rev 8731 - trunk/gs/src

giles at ghostscript.com giles at ghostscript.com
Tue May 13 12:52:09 PDT 2008


Author: giles
Date: 2008-05-13 12:52:08 -0700 (Tue, 13 May 2008)
New Revision: 8731

Modified:
   trunk/gs/src/gdevsvg.c
Log:
Fix an incorrect curveto coordinate.


Modified: trunk/gs/src/gdevsvg.c
===================================================================
--- trunk/gs/src/gdevsvg.c	2008-05-13 18:47:23 UTC (rev 8730)
+++ trunk/gs/src/gdevsvg.c	2008-05-13 19:52:08 UTC (rev 8731)
@@ -603,7 +603,7 @@
     dprintf8("svg_curveto(%lf,%lf, %lf,%lf, %lf,%lf, %lf,%lf)\n",
 	x0,y0, x1,y1, x2,y2, x3,y3);
 
-    sprintf(line, " C%lf,%lf %lf,%lf %lf,%lf", x1,y2, x2,y2, x3,y3);
+    sprintf(line, " C%lf,%lf %lf,%lf %lf,%lf", x1,y1, x2,y2, x3,y3);
     svg_write(svg, line);
 
     return 0;



More information about the gs-cvs mailing list