* src/sfnt/sfobjs.c (Get_Name): Fix typo (`==' instead of `=').
diff --git a/ChangeLog b/ChangeLog
index 4a383c2..cf0ea71 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 c195815..c5f80d8 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 )
                 {