Commit 0f6467a016e9a13dedb944b239b6eddb2af33ca3

David Turner 2000-06-07T20:07:35

fixed a small bug that prevented the file name to be correctly printed in certain cases..

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
diff --git a/demos/src/ftlint.c b/demos/src/ftlint.c
index f442c20..e16bbcb 100644
--- a/demos/src/ftlint.c
+++ b/demos/src/ftlint.c
@@ -84,7 +84,12 @@
       
       /* try to open the file with no extra extension first */
       error = FT_New_Face( library, fname, 0, &face );
-      if (!error) goto Success;
+      if (!error)
+      {
+        printf( "%s: ", fname );
+        goto Success;
+      }
+
 
       if ( error == FT_Err_Unknown_File_Format )
       {