1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

Message style improvements

This commit is contained in:
Peter Eisentraut
2023-05-19 18:45:29 +02:00
parent e5f85744ea
commit 8e7912e73d
11 changed files with 31 additions and 30 deletions

View File

@@ -328,7 +328,7 @@ expect_boolean_value(char *keyword, char *value, pg_compress_specification *resu
return false;
result->parse_error =
psprintf(_("value for compression option \"%s\" must be a boolean"),
psprintf(_("value for compression option \"%s\" must be a Boolean value"),
keyword);
return false;
}

View File

@@ -92,7 +92,7 @@ rmtree(const char *path, bool rmtopdir)
default:
if (unlink(pathbuf) != 0 && errno != ENOENT)
{
pg_log_warning("could not unlink file \"%s\": %m", pathbuf);
pg_log_warning("could not remove file \"%s\": %m", pathbuf);
result = false;
}
break;