diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2023-09-16 03:56:34 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2023-09-16 03:56:34 +0000 |
commit | a0202ae7310caf2ec1113b2f54c4ff4bcdac1f59 (patch) | |
tree | 80e38c3c8b096755686483069bb9856424c0f178 /converter/other/pamtosvg/output-svg.c | |
parent | 2d18206ae939ce1d91647b0c771beaea32818329 (diff) | |
download | netpbm-mirror-a0202ae7310caf2ec1113b2f54c4ff4bcdac1f59.tar.gz netpbm-mirror-a0202ae7310caf2ec1113b2f54c4ff4bcdac1f59.tar.xz netpbm-mirror-a0202ae7310caf2ec1113b2f54c4ff4bcdac1f59.zip |
fix compilation failures introduced by recent changes
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@4659 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other/pamtosvg/output-svg.c')
-rw-r--r-- | converter/other/pamtosvg/output-svg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/converter/other/pamtosvg/output-svg.c b/converter/other/pamtosvg/output-svg.c index 53a8d4fd..13ac5201 100644 --- a/converter/other/pamtosvg/output-svg.c +++ b/converter/other/pamtosvg/output-svg.c @@ -82,7 +82,7 @@ out_splines(FILE * const fileP, (shape.centerline || splineList.open) ? "fill" : "stroke"); } fprintf(fileP, "M%g %g", - START_POINT(first).x, height - START_POINT(first).y); + BEG_POINT(first).x, height - BEG_POINT(first).y); outSplineList(fileP, splineList, height); |