shithub: freetype+ttf2subf

Download patch

ref: 2bf99344c335706cf5f2f7733fd27ebd14d3aaa6
parent: 3974a6058dfdf9f2545ed218b9df257fde9eba7a
author: David Turner <[email protected]>
date: Sun Jun 24 13:23:45 EDT 2001

fixed the 64-bits division computation for 16-bits systems

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,11 +1,17 @@
+2001-06-24  David Turner  <[email protected]>
+
+    * src/base/ftcalc.c (ft_div64by32): fixed the source to work
+    correctly on 16-bit systems..
+
 2001-06-23  Anthony Fok  <[email protected]>
 
 	* debian/*: Added Debian package build directory for 2.0.4.
 
-2001-06-22  David Turner  <[email protected]>
+2001-06-22  David Turner <[email protected]>
 
-	* docs/PATENTS: Added patents disclaimer.  This one was missing!
-	* docs/CHANGES, docs/todo: Updated for the upcoming 2.0.4 release.
+    * docs/PATENTS: added patents disclaimer. This one was missing !!
+    
+    * docs/CHANGES, docs/todo: updated for the upcoming 2.0.4 release
 
 2001-06-20  Werner Lemberg  <[email protected]>
 
--- a/src/base/ftcalc.c
+++ b/src/base/ftcalc.c
@@ -299,8 +299,8 @@
                 FT_UInt32  lo,
                 FT_UInt32  y )
   {
-    FT_UInt  r, q;
-    FT_Int   i;
+    FT_UInt32  r, q;
+    FT_Int     i;
 
 
     q = 0;