Oops. s/OpenTypeFontFaceFile/OpenTypeFontFile/g
diff --git a/src/harfbuzz-ng.cc b/src/harfbuzz-ng.cc
index ecde88a..d23021f 100644
--- a/src/harfbuzz-ng.cc
+++ b/src/harfbuzz-ng.cc
@@ -205,7 +205,7 @@
  * Organization of an OpenType Font
  */
 
-struct OpenTypeFontFaceFile;
+struct OpenTypeFontFile;
 struct OffsetTable;
 struct TTCHeader;
 
@@ -251,8 +251,8 @@
  * OpenType Font File
  */
 
-struct OpenTypeFontFaceFile {
-  DEFINE_NON_INSTANTIABLE(OpenTypeFontFaceFile);
+struct OpenTypeFontFile {
+  DEFINE_NON_INSTANTIABLE(OpenTypeFontFile);
   static const hb_tag_t TrueTypeTag	= HB_TAG ( 0 , 1 , 0 , 0 );
   static const hb_tag_t CFFTag		= HB_TAG ('O','T','T','O');
   static const hb_tag_t TTCTag		= HB_TAG ('t','t','c','f');
@@ -260,11 +260,11 @@
   /* Factory: ::get(font_data)
    * This is how you get a handle to one of these
    */
-  static inline const OpenTypeFontFaceFile& get (const char *font_data) {
-    return (const OpenTypeFontFaceFile&)*font_data;
+  static inline const OpenTypeFontFile& get (const char *font_data) {
+    return (const OpenTypeFontFile&)*font_data;
   }
-  static inline OpenTypeFontFaceFile& get (char *font_data) {
-    return (OpenTypeFontFaceFile&)*font_data;
+  static inline OpenTypeFontFile& get (char *font_data) {
+    return (OpenTypeFontFile&)*font_data;
   }
 
   /* This is how you get a table */
@@ -721,16 +721,16 @@
   
   printf ("Opened font file %s: %d bytes long\n", argv[1], len);
   
-  const OpenTypeFontFaceFile &ot = OpenTypeFontFaceFile::get (font_data);
+  const OpenTypeFontFile &ot = OpenTypeFontFile::get (font_data);
 
   switch (ot.tag) {
-  case OpenTypeFontFaceFile::TrueTypeTag:
+  case OpenTypeFontFile::TrueTypeTag:
     printf ("OpenType font with TrueType outlines\n");
     break;
-  case OpenTypeFontFaceFile::CFFTag:
+  case OpenTypeFontFile::CFFTag:
     printf ("OpenType font with CFF (Type1) outlines\n");
     break;
-  case OpenTypeFontFaceFile::TTCTag:
+  case OpenTypeFontFile::TTCTag:
     printf ("TrueType Collection of OpenType fonts\n");
     break;
   default: