upload tizen2.0 source
[framework/uifw/xorg/lib/libxfont.git] / src / fontfile / dirfile.c
old mode 100755 (executable)
new mode 100644 (file)
index c8aff6f..0d34db9
@@ -90,7 +90,7 @@ FontFileReadDirectory (char *directory, FontDirectoryPtr *pdir)
     strcat(dir_file, FontDirFile);
     file = fopen(dir_file, "rt");
     if (file) {
-#ifndef WIN32        
+#ifndef WIN32
        if (fstat (fileno(file), &statb) == -1)
 #else
        if (stat (dir_file, &statb) == -1)
@@ -135,7 +135,7 @@ FontFileReadDirectory (char *directory, FontDirectoryPtr *pdir)
            FontFileAddFontFile (dir, font_name, file_name);
        }
        fclose(file);
-       
+
     } else if (errno != ENOENT) {
        return BadFontPath;
     }
@@ -188,7 +188,7 @@ FontFileDirectoryChanged(FontDirectoryPtr dir)
        return TRUE;
     return FALSE;
 }
-    
+
 /*
  * Make each of the file names an automatic alias for each of the files.
  */
@@ -212,7 +212,7 @@ AddFileNameAliases(FontDirectoryPtr dir)
        renderer = FontFileMatchRenderer (fileName);
        if (!renderer)
            continue;
-       
+
        len = strlen (fileName) - renderer->fileSuffixLen;
        if (len >= sizeof(copy))
            continue;