From: Magnus Hagander Date: Thu, 12 Jul 2007 18:15:52 +0000 (+0000) Subject: Silence compile warning on win32, per Stefan and Buildfarm. X-Git-Tag: REL8_3_BETA1~469 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=017f2d2f18eca4eb0bf08f686c9e88c83b27fa9f;p=postgresql Silence compile warning on win32, per Stefan and Buildfarm. --- diff --git a/src/bin/pg_ctl/pg_ctl.c b/src/bin/pg_ctl/pg_ctl.c index 970fb39139..5b886d2492 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;