diff options
author | Robin Watts <robin.watts@artifex.com> | 2010-04-28 14:41:02 +0000 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2010-04-28 14:41:02 +0000 |
commit | 7e4f47d51191013ee0c0c1fd676d07ac86dfde60 (patch) | |
tree | 3c4c44d815821e5ddec48ee08a5488d4a6d7c371 | |
parent | f0c3ff4d207744b9525a2ee8e8cf5594c5f67bca (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.c | 2 |
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, |