aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Hagander <magnus@hagander.net>2007-07-12 18:15:52 +0000
committerMagnus Hagander <magnus@hagander.net>2007-07-12 18:15:52 +0000
commit017f2d2f18eca4eb0bf08f686c9e88c83b27fa9f (patch)
treee8d9a35f24a9e67cb0a3398a8314bdf8ded9ba69
parent784fd04940a88e3246001b6024fc4dbf9b9b06e2 (diff)
downloadpostgresql-017f2d2f18eca4eb0bf08f686c9e88c83b27fa9f.tar.gz
postgresql-017f2d2f18eca4eb0bf08f686c9e88c83b27fa9f.zip
Silence compile warning on win32, per Stefan and Buildfarm.
-rw-r--r--src/bin/pg_ctl/pg_ctl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_ctl/pg_ctl.c b/src/bin/pg_ctl/pg_ctl.c
index 970fb391398..5b886d2492b 100644
--- a/src/bin/pg_ctl/pg_ctl.c
+++ b/src/bin/pg_ctl/pg_ctl.c
@@ -4,7 +4,7 @@
*
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.82 2007/07/08 19:07:38 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.83 2007/07/12 18:15:52 mha Exp $
*
*-------------------------------------------------------------------------
*/
@@ -91,7 +91,7 @@ static char *post_opts = NULL;
static const char *progname;
static char *log_file = NULL;
static char *postgres_path = NULL;
-static const char *register_servicename = "PostgreSQL"; /* FIXME: + version ID? */
+static char *register_servicename = "PostgreSQL"; /* FIXME: + version ID? */
static char *register_username = NULL;
static char *register_password = NULL;
static char *argv0 = NULL;