Commit dcc0d070e00179b23766ff52d0fa63cd3ef5aea0

Alexei Podtelezhnikov 2013-01-23T23:09:59

Typo.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff --git a/src/base/ftoutln.c b/src/base/ftoutln.c
index a23b8a3..e3456e7 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 );