Silence compiler warning about casting HANDLE to long on WIN64.
authorAndrew Dunstan
Tue, 19 Apr 2011 15:21:00 +0000 (11:21 -0400)
committerAndrew Dunstan
Tue, 19 Apr 2011 15:21:00 +0000 (11:21 -0400)
src/test/regress/pg_regress.c

index b9ae622b04b0d272672249ec2ccba8838201fb97..5fe3724c82ef6e9d2cba2300ec0d9dc9ffc50cd4 100644 (file)
@@ -2277,8 +2277,14 @@ regression_main(int argc, char *argv[], init_function ifunc, test_function tfunc
 
        postmaster_running = true;
 
+#ifdef WIN64
+/* need a series of two casts to convert HANDLE without compiler warning */
+#define ULONGPID(x) (unsigned long) (unsigned long long) (x)
+#else
+#define ULONGPID(x) (unsigned long) (x)
+#endif
        printf(_("running on port %d with pid %lu\n"),
-              port, (unsigned long) postmaster_pid);
+              port, ULONGPID(postmaster_pid));
    }
    else
    {