gdi: Change ReadFontDir error into a warning.

oldstable
Alexandre Julliard 2006-04-04 11:54:14 +02:00
parent 91a8e2a071
commit 1b7600c60b
1 changed files with 1 additions and 1 deletions

View File

@ -1049,7 +1049,7 @@ static BOOL ReadFontDir(const char *dirname, BOOL external_fonts)
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) {