Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/include/sys/dirent.h')
-rw-r--r--winsup/cygwin/include/sys/dirent.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/winsup/cygwin/include/sys/dirent.h b/winsup/cygwin/include/sys/dirent.h
index 049e87ad0..48688efe4 100644
--- a/winsup/cygwin/include/sys/dirent.h
+++ b/winsup/cygwin/include/sys/dirent.h
@@ -15,7 +15,7 @@
#define __DIRENT_VERSION 2
-#ifndef __x86_64__
+#ifdef __i386__
#pragma pack(push,4)
#endif
#define _DIRENT_HAVE_D_TYPE
@@ -28,7 +28,7 @@ struct dirent
__uint32_t __d_internal1;
char d_name[NAME_MAX + 1];
};
-#ifndef __x86_64__
+#ifdef __i386__
#pragma pack(pop)
#endif
@@ -40,7 +40,7 @@ struct dirent
#define __DIRENT_COOKIE 0xdede4242
#endif
-#ifndef __x86_64__
+#ifdef __i386__
#pragma pack(push,4)
#endif
typedef struct __DIR
@@ -56,7 +56,7 @@ typedef struct __DIR
void *__fh;
unsigned __flags;
} DIR;
-#ifndef __x86_64__
+#ifdef __i386__
#pragma pack(pop)
#endif