summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexei Podtelezhnikov <apodtele@gmail.com>2013-01-23 23:09:59 -0500
committerAlexei Podtelezhnikov <apodtele@gmail.com>2013-01-23 23:09:59 -0500
commitdcc0d070e00179b23766ff52d0fa63cd3ef5aea0 (patch)
tree14b9675a7b33c68460ae36a924cf837264e4a877
parentda11e5e7647b668dee46fd0418ea5ecbc33ae3b2 (diff)
downloadfreetype2-dcc0d070e00179b23766ff52d0fa63cd3ef5aea0.tar.gz
Typo.
-rw-r--r--src/base/ftoutln.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/ftoutln.c b/src/base/ftoutln.c
index a23b8a30e..e3456e7d4 100644
--- a/src/base/ftoutln.c
+++ b/src/base/ftoutln.c
@@ -982,13 +982,13 @@
l = FT_MIN( l_in, l_out );
- if ( FT_MulFix( xstrength, q ) =< FT_MulFix( d, l ) )
+ if ( FT_MulFix( xstrength, q ) <= FT_MulFix( d, l ) )
shift.x = FT_MulDiv( shift.x, xstrength, d );
else
shift.x = FT_MulDiv( shift.x, l, q );
- if ( FT_MulFix( ystrength, q ) =< FT_MulFix( d, l ) )
+ if ( FT_MulFix( ystrength, q ) <= FT_MulFix( d, l ) )
shift.y = FT_MulDiv( shift.y, ystrength, d );
else
shift.y = FT_MulDiv( shift.y, l, q );