summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2006-06-27 23:25:28 +0000
committerTom Lane2006-06-27 23:25:28 +0000
commita1dc5c60bcd4c458e160bf0e355bed083a1cab57 (patch)
tree5a9d6db828d86602e807ff9b6b5b74728ae47371
parent370a709c75becffba230a3fa14747a134b7d55b4 (diff)
Remove embedded newline in string literal --- seems to make newer gcc
versions very unhappy, and shouldn't be there anyway.
-rw-r--r--src/backend/utils/misc/guc.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c
index 9863696e1fb..9b8e788cd09 100644
--- a/src/backend/utils/misc/guc.c
+++ b/src/backend/utils/misc/guc.c
@@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>.
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.324 2006/06/27 22:16:44 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.325 2006/06/27 23:25:28 tgl Exp $
*
*--------------------------------------------------------------------
*/
@@ -732,8 +732,7 @@ static struct config_bool ConfigureNamesBool[] =
{
{"update_process_title", PGC_SUSET, STATS_COLLECTOR,
gettext_noop("Updates the process title to show the active SQL command."),
- gettext_noop("Enables updating of the process title every time a new
- SQL command is received by the server.")
+ gettext_noop("Enables updating of the process title every time a new SQL command is received by the server.")
},
&update_process_title,
true, NULL, NULL