diff options
author | Werner Lemberg <wl@gnu.org> | 2008-11-29 22:50:24 +0000 |
---|---|---|
committer | Werner Lemberg <wl@gnu.org> | 2008-11-29 22:50:24 +0000 |
commit | 1a5d561dce3731a5691a27a8b0a04c664bca7add (patch) | |
tree | 1955588e8ad27790e564846f27413341b4f13c61 /src/smooth | |
parent | 8f9b7f50a513675e9a907ae4393d8d914635a23d (diff) |
* src/autofit/afcjk.c, src/base/ftoutln.c, src/base/ftrfork.c,
src/bdf/bdfdrivr.c, src/gxvalid/gxvmorx.c, src/otvalid/otvmath.c,
src/pcf/pcfdrivr.c, src/psnames/pstables.h, src/smooth/ftgrays.c,
src/tools/glnames.py, src/truetype/ttinterp.c, src/type1/t1load.c,
src/type42/t42objs.c, src/winfonts/winfnt.c: Fix compiler warnings
(Atari PureC).
Diffstat (limited to 'src/smooth')
-rw-r--r-- | src/smooth/ftgrays.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/smooth/ftgrays.c b/src/smooth/ftgrays.c index c44ba01d..206a1eae 100644 --- a/src/smooth/ftgrays.c +++ b/src/smooth/ftgrays.c @@ -1240,7 +1240,7 @@ x += (TCoord)ras.min_ex; /* FT_Span.x is a 16-bit short, so limit our coordinates appropriately */ - if ( x >= 32768 ) + if ( x >= 32767 ) x = 32767; if ( coverage ) |