Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit aa20bad

Browse files
committed
Fix improper defines for uid_t and gid_t. Had them backwards.
1 parent a95a82e commit aa20bad

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/include/port/win32.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.38 2004/10/06 16:36:02 momjian Exp $ */
1+
/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.39 2004/10/06 17:47:53 momjian Exp $ */
22

33
/* undefine and redefine after #include */
44
#undef mkdir
@@ -202,8 +202,8 @@ typedef int uid_t;
202202
typedef int gid_t;
203203
#else
204204
/* These are redefined by perl. */
205-
#define int uid_t;
206-
#define int gid_t;
205+
#define uid_t int
206+
#define gid_t int
207207
#endif
208208
typedef long key_t;
209209

0 commit comments

Comments
 (0)