aboutsummaryrefslogtreecommitdiff
path: root/src/backend/postmaster/postmaster.c
diff options
context:
space:
mode:
authorNeil Conway <neilc@samurai.com>2004-11-17 08:30:11 +0000
committerNeil Conway <neilc@samurai.com>2004-11-17 08:30:11 +0000
commit2fa36d7e414870e5d0bec36f4fbe9fbca34f0ca5 (patch)
tree5dcdeffa87f5ffe5e352180d924f3c9a95009a8b /src/backend/postmaster/postmaster.c
parentffe130f52e126ec0710d266635117903db5676f3 (diff)
downloadpostgresql-2fa36d7e414870e5d0bec36f4fbe9fbca34f0ca5.tar.gz
postgresql-2fa36d7e414870e5d0bec36f4fbe9fbca34f0ca5.zip
Win32 build cleanups, from Andrew Dunstan.
Diffstat (limited to 'src/backend/postmaster/postmaster.c')
-rw-r--r--src/backend/postmaster/postmaster.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c
index a8e22cbd8ee..2e19693b2d4 100644
--- a/src/backend/postmaster/postmaster.c
+++ b/src/backend/postmaster/postmaster.c
@@ -37,7 +37,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.439 2004/11/17 00:14:12 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.440 2004/11/17 08:30:09 neilc Exp $
*
* NOTES
*
@@ -4037,7 +4037,7 @@ win32_waitpid(int *exitstatus)
*/
ereport(FATAL,
(errmsg_internal("failed to get exit code for child %lu",
- (DWORD)win32_childPIDArray[index])));
+ (unsigned long) win32_childPIDArray[index])));
}
*exitstatus = (int) exitCode;
return win32_childPIDArray[index];