diff options
author | Alan Hourihane <alanh@tungstengraphics.com> | 2008-04-29 22:16:05 +0100 |
---|---|---|
committer | Alan Hourihane <alanh@tungstengraphics.com> | 2008-04-29 22:16:05 +0100 |
commit | a393450cbde80b6e7f0e1c4112363eb1313a6cdb (patch) | |
tree | 0fda72e799069a547a01f5a0baa1e6f835d312c8 | |
parent | cd83cf47412b4a5979e152990c3b0870751aee07 (diff) |
fix logic inverted problem
-rw-r--r-- | src/Initialize.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Initialize.c b/src/Initialize.c index 2a87839..481391c 100644 --- a/src/Initialize.c +++ b/src/Initialize.c @@ -376,7 +376,7 @@ static void CombineAppUserDefaults( Boolean deallocate = False; if (!(path = getenv("XUSERFILESEARCHPATH"))) { -#if defined(WIN32) && defined(__MINGW32__) +#if !defined(WIN32) && !defined(__MINGW32__) char *old_path; char homedir[PATH_MAX]; GetRootDirName(homedir, PATH_MAX); |