simplified is_hidden()

svn path=/trunk/; revision=23548
This commit is contained in:
Sven Neumann 2007-09-14 15:56:59 +00:00
parent 8e86bc46f9
commit 401694cf9f
1 changed files with 1 additions and 4 deletions

View File

@ -210,8 +210,5 @@ is_hidden (const gchar *filename)
/* skip files starting with '.' so we don't try to parse
* stuff like .DS_Store or other metadata storage files
*/
if (filename[0] == '.')
return TRUE;
return FALSE;
return (filename[0] == '.');
}