aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/misc.c
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2017-03-07 10:43:28 -0500
committerRobert Haas <rhaas@postgresql.org>2017-03-07 10:44:09 -0500
commitcd87a5ed65f2b4f3bdf07c9664a64696c86d17be (patch)
tree0788129c05b45400e7f7b18c9c2a3417ccdf6734 /src/backend/utils/adt/misc.c
parent11324e408f0e3a25621c611467927c644894b30d (diff)
downloadpostgresql-cd87a5ed65f2b4f3bdf07c9664a64696c86d17be.tar.gz
postgresql-cd87a5ed65f2b4f3bdf07c9664a64696c86d17be.zip
Fix wrong word in comment.
Third time's the charm.
Diffstat (limited to 'src/backend/utils/adt/misc.c')
-rw-r--r--src/backend/utils/adt/misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/adt/misc.c b/src/backend/utils/adt/misc.c
index 869c3bd7fa5..1ec7f32470a 100644
--- a/src/backend/utils/adt/misc.c
+++ b/src/backend/utils/adt/misc.c
@@ -939,7 +939,7 @@ pg_current_logfile(PG_FUNCTION_ARGS)
log_filepath = strchr(lbuffer, ' ');
if (log_filepath == NULL)
{
- /* Uh oh. No newline found, so file content is corrupted. */
+ /* Uh oh. No space found, so file content is corrupted. */
elog(ERROR,
"missing space character in \"%s\"", LOG_METAINFO_DATAFILE);
break;