Commit cd87a5ed authored by Robert Haas's avatar Robert Haas

Fix wrong word in comment.

Third time's the charm.
parent 11324e40
...@@ -939,7 +939,7 @@ pg_current_logfile(PG_FUNCTION_ARGS) ...@@ -939,7 +939,7 @@ pg_current_logfile(PG_FUNCTION_ARGS)
log_filepath = strchr(lbuffer, ' '); log_filepath = strchr(lbuffer, ' ');
if (log_filepath == NULL) 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, elog(ERROR,
"missing space character in \"%s\"", LOG_METAINFO_DATAFILE); "missing space character in \"%s\"", LOG_METAINFO_DATAFILE);
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment