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

Commit d26a5f1

Browse files
committed
Uppercase hex value.
1 parent 208ae0c commit d26a5f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/include/port/win32.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.66 2007/01/22 18:31:51 momjian Exp $ */
1+
/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.67 2007/01/22 18:32:57 momjian Exp $ */
22

33
#if defined(_MSC_VER) || defined(__BORLANDC__)
44
#define WIN32_ONLY_COMPILER
@@ -143,7 +143,7 @@ int semop(int semId, struct sembuf * sops, int flag);
143143
* Some day we might want to print descriptions for the most common
144144
* exceptions, rather than printing a URL.
145145
*/
146-
#define WIFEXITED(w) (((w) & 0xffffff00) == 0)
146+
#define WIFEXITED(w) (((w) & 0XFFFFFF00) == 0)
147147
#define WIFSIGNALED(w) (!WIFEXITED(w))
148148
#define WEXITSTATUS(w) (w)
149149
#define WTERMSIG(w) (w)

0 commit comments

Comments
 (0)