about summary refs log tree commit diff
path: root/converter/other/pamtosvg/spline.c
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2023-09-16 03:56:34 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2023-09-16 03:56:34 +0000
commita0202ae7310caf2ec1113b2f54c4ff4bcdac1f59 (patch)
tree80e38c3c8b096755686483069bb9856424c0f178 /converter/other/pamtosvg/spline.c
parent2d18206ae939ce1d91647b0c771beaea32818329 (diff)
downloadnetpbm-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/spline.c')
-rw-r--r--converter/other/pamtosvg/spline.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/converter/other/pamtosvg/spline.c b/converter/other/pamtosvg/spline.c
index 9535ec6a..6d867131 100644
--- a/converter/other/pamtosvg/spline.c
+++ b/converter/other/pamtosvg/spline.c
@@ -18,15 +18,15 @@ print_spline (FILE *f, spline_type s)
 
   if (SPLINE_DEGREE (s) == LINEARTYPE)
     fprintf (f, "(%.3f,%.3f)--(%.3f,%.3f).\n",
-                START_POINT (s).x, START_POINT (s).y,
+                BEG_POINT (s).x, BEG_POINT (s).y,
                 END_POINT (s).x, END_POINT (s).y);
 
   else if (SPLINE_DEGREE (s) == CUBICTYPE)
     fprintf (f, "(%.3f,%.3f)..ctrls(%.3f,%.3f)&(%.3f,%.3f)..(%.3f,%.3f).\n",
-                START_POINT (s).x, START_POINT (s).y,
-                CONTROL1 (s).x, CONTROL1 (s).y,
-                CONTROL2 (s).x, CONTROL2 (s).y,
-                END_POINT (s).x, END_POINT (s).y);
+             BEG_POINT (s).x, BEG_POINT (s).y,
+             CONTROL1  (s).x, CONTROL1  (s).y,
+             CONTROL2  (s).x, CONTROL2  (s).y,
+             END_POINT (s).x, END_POINT (s).y);
 }