* include/freetype/internal/ftstream.h (FT_GET_OFF3_LE): Fix typo. * src/base/ftcalc.c (ft_div64by32): Fixed the source to work correctly on 16-bit systems. * docs/PATENTS: Added patents disclaimer. This one was missing! * docs/CHANGES, docs/todo: Updated for the upcoming 2.0.4 release.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
diff --git a/ChangeLog b/ChangeLog
index 8157086..116fa53 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,11 @@
+2001-06-26 Wolfgang Domröse <porthos.domroese@harz.de>
+
+ * include/freetype/internal/ftstream.h (FT_GET_OFF3_LE): Fix typo.
+
2001-06-24 David Turner <david@freetype.org>
- * src/base/ftcalc.c (ft_div64by32): fixed the source to work
- correctly on 16-bit systems..
+ * src/base/ftcalc.c (ft_div64by32): Fixed the source to work
+ correctly on 16-bit systems.
2001-06-23 Anthony Fok <fok@debian.org>
@@ -9,9 +13,9 @@
2001-06-22 David Turner <david@freetype.org>
- * docs/PATENTS: added patents disclaimer. This one was missing !!
+ * docs/PATENTS: Added patents disclaimer. This one was missing!
- * docs/CHANGES, docs/todo: updated for the upcoming 2.0.4 release
+ * docs/CHANGES, docs/todo: Updated for the upcoming 2.0.4 release.
2001-06-20 Werner Lemberg <wl@gnu.org>
diff --git a/include/freetype/internal/ftstream.h b/include/freetype/internal/ftstream.h
index 8e8bc32..a5faefb 100644
--- a/include/freetype/internal/ftstream.h
+++ b/include/freetype/internal/ftstream.h
@@ -165,6 +165,7 @@ FT_BEGIN_HEADER
#define FT_GET_OFF3_LE( p ) \
( (long) ( ( (signed char)(p)[2] << 16 ) | \
+ ( (p)[1] << 8 ) | \
(p)[0] ) )
#define FT_GET_LONG_LE( p ) \