efreet: fix build on windows by matching the #if around the if statement.

This commit is contained in:
Cedric BAIL 2014-01-09 14:30:13 +09:00
parent bc1a8ffb5d
commit d0a03f65dc
1 changed files with 1 additions and 1 deletions

View File

@ -282,7 +282,7 @@ efreet_dirs_init(void)
if (getuid() == geteuid()) if (getuid() == geteuid())
#endif #endif
efreet_home_dir = getenv("HOME"); efreet_home_dir = getenv("HOME");
#if !defined(HAVE_GETUID) || defined(HAVE_GETEUID) #if defined(HAVE_GETUID) && defined(HAVE_GETEUID)
else else
{ {
struct passwd *pw = getpwent(); struct passwd *pw = getpwent();