Alexandre Julliard : gdi: Change ReadFontDir error into a warning.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Apr 4 05:37:43 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: 1b7600c60b790c72544f58d93599178b1b8bb38c
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=1b7600c60b790c72544f58d93599178b1b8bb38c

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Tue Apr  4 11:54:14 2006 +0200

gdi: Change ReadFontDir error into a warning.

---

 dlls/gdi/freetype.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/gdi/freetype.c b/dlls/gdi/freetype.c
index febe146..4f29812 100644
--- a/dlls/gdi/freetype.c
+++ b/dlls/gdi/freetype.c
@@ -1049,7 +1049,7 @@ static BOOL ReadFontDir(const char *dirn
 
     dir = opendir(dirname);
     if(!dir) {
-        ERR("Can't open directory %s\n", debugstr_a(dirname));
+        WARN("Can't open directory %s\n", debugstr_a(dirname));
 	return FALSE;
     }
     while((dent = readdir(dir)) != NULL) {




More information about the wine-cvs mailing list