From e8d387fd45a27d44ea324c4ca3130cb6f9f2fb03 Mon Sep 17 00:00:00 2001 From: Gerald Pfeifer Date: Fri, 25 Dec 2009 11:08:53 +0100 Subject: [PATCH] ntdll: Use #ifdef instead of #if to check for _DARWIN_FEATURE_64_BIT_INODE. --- dlls/ntdll/directory.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/ntdll/directory.c b/dlls/ntdll/directory.c index 5e68837088a..350dd8ac74a 100644 --- a/dlls/ntdll/directory.c +++ b/dlls/ntdll/directory.c @@ -1378,7 +1378,7 @@ done: #elif defined HAVE_GETDIRENTRIES -#if _DARWIN_FEATURE_64_BIT_INODE +#ifdef _DARWIN_FEATURE_64_BIT_INODE /* Darwin doesn't provide a version of getdirentries with support for 64-bit * inodes. When 64-bit inodes are enabled, the getdirentries symbol is mapped @@ -1563,7 +1563,7 @@ done: return res; } -#if _DARWIN_FEATURE_64_BIT_INODE +#ifdef _DARWIN_FEATURE_64_BIT_INODE #undef getdirentries #undef dirent #endif