Fix improper defines for uid_t and gid_t. Had them backwards.

This commit is contained in:
Bruce Momjian 2004-10-06 17:47:53 +00:00
parent a95a82e7f0
commit aa20badeaf
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.38 2004/10/06 16:36:02 momjian Exp $ */
/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.39 2004/10/06 17:47:53 momjian Exp $ */
/* undefine and redefine after #include */
#undef mkdir
@ -202,8 +202,8 @@ typedef int uid_t;
typedef int gid_t;
#else
/* These are redefined by perl. */
#define int uid_t;
#define int gid_t;
#define uid_t int
#define gid_t int
#endif
typedef long key_t;