summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2002-03-29 16:42:05 +0000
committerWerner Lemberg <wl@gnu.org>2002-03-29 16:42:05 +0000
commit28cc3ef157f04b17a4f2005aa976c9b030d4de9c (patch)
treecbfe4bb1f959f1aa3f7cc53cc43e3b25de0eb4a6
parent0cb34720001a85d530ccf7fbe2042b0a75b2c8f4 (diff)
downloadfreetype2-28cc3ef157f04b17a4f2005aa976c9b030d4de9c.tar.gz
* src/sfnt/sfobjs.c (Get_Name): Fix typo (`==' instead of `=').
-rw-r--r--ChangeLog1
-rw-r--r--src/sfnt/sfobjs.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4a383c2a9..cf0ea7191 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
2002-03-28 KUSANO Takayuki <AE5T-KSN@asahi-net.or.jp>
* src/sfnt/sfdriver.c (get_sfnt_postscript_name): Fix serious typos.
+ * src/sfnt/sfobjs.c (Get_Name): Fix typo (`==' instead of `=').
2002-03-26 David Turner <david@freetype.org>
diff --git a/src/sfnt/sfobjs.c b/src/sfnt/sfobjs.c
index c19581574..c5f80d8af 100644
--- a/src/sfnt/sfobjs.c
+++ b/src/sfnt/sfobjs.c
@@ -199,7 +199,7 @@
/* we only take a non-English name when there is nothing */
/* else available in the font.. */
/* */
- if ( found_win = -1 || (rec->languageID & 0x3FF) == 0x009 )
+ if ( found_win == -1 || (rec->languageID & 0x3FF) == 0x009 )
{
switch ( rec->encodingID )
{