From: Robert Haas Date: Tue, 7 Mar 2017 15:43:28 +0000 (-0500) Subject: Fix wrong word in comment. X-Git-Tag: REL_10_BETA1~753 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cd87a5ed65f2b4f3bdf07c9664a64696c86d17be;p=postgresql Fix wrong word in comment. Third time's the charm. --- diff --git a/src/backend/utils/adt/misc.c b/src/backend/utils/adt/misc.c index 869c3bd7fa..1ec7f32470 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;