bad logic there tom

SVN revision: 5291
This commit is contained in:
Tom Gilbert 2001-08-26 21:20:02 +00:00
parent c86e7b86ab
commit 3ae994e663
1 changed files with 1 additions and 1 deletions

View File

@ -310,7 +310,7 @@ int
__imlib_IsRealFile(const char *s)
{
struct stat st;
return ((stat(s, &st) != -1) && (!S_ISREG(st.st_mode)));
return ((stat(s, &st) != -1) && (S_ISREG(st.st_mode)));
}
time_t