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

This commit is contained in:
David Turner 2001-06-24 17:23:45 +00:00
parent 609a20d0fa
commit 08e755bbf0
2 changed files with 11 additions and 5 deletions

View File

@ -1,11 +1,17 @@
2001-06-24 David Turner <david@freetype.org>
* src/base/ftcalc.c (ft_div64by32): fixed the source to work
correctly on 16-bit systems..
2001-06-23 Anthony Fok <fok@debian.org>
* debian/*: Added Debian package build directory for 2.0.4.
2001-06-22 David Turner <david@freetype.org>
2001-06-22 David Turner <david@freetype.org>
* 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 <wl@gnu.org>

View File

@ -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;