summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2010-04-28 14:41:02 +0000
committerRobin Watts <robin.watts@artifex.com>2010-04-28 14:41:02 +0000
commit7e4f47d51191013ee0c0c1fd676d07ac86dfde60 (patch)
tree3c4c44d815821e5ddec48ee08a5488d4a6d7c371
parentf0c3ff4d207744b9525a2ee8e8cf5594c5f67bca (diff)
Add missing cast to fapi_ft.c to quiet a warning. This was missed out of
yesterdays commit of such fixes. No expected diffs. git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@11142 a1074d23-0009-0410-80fe-cf8c14f379e6
-rw-r--r--gs/psi/fapi_ft.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gs/psi/fapi_ft.c b/gs/psi/fapi_ft.c
index c51fb5b3f..27bee8846 100644
--- a/gs/psi/fapi_ft.c
+++ b/gs/psi/fapi_ft.c
@@ -1016,7 +1016,7 @@ static int conic_to(const FT_Vector *aControl, const FT_Vector *aTo, void *aObje
Control2x = float2fixed((x + Controlx * 2) / 3) << 8;
Control2y = float2fixed((y + Controly * 2) / 3) << 8;
- return p->path->curveto(p->path, Control1x,
+ return p->path->curveto(p->path, (FracInt)Control1x,
(FracInt)Control1y,
(FracInt)Control2x,
(FracInt)Control2y,