aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;