mirror of
https://github.com/postgres/postgres.git
synced 2025-04-27 22:56:53 +03:00
Adjust error message
Makes it look more similar to other ones, and avoids the need for pluralization.
This commit is contained in:
parent
5b0c7e2f75
commit
e5d11b91e4
@ -83,11 +83,11 @@ get_controlfile(const char *DataDir, const char *progname, bool *crc_ok_p)
|
|||||||
else
|
else
|
||||||
#ifndef FRONTEND
|
#ifndef FRONTEND
|
||||||
ereport(ERROR,
|
ereport(ERROR,
|
||||||
(errmsg("could not read file \"%s\": read %d bytes, expected %d",
|
(errmsg("could not read file \"%s\": read %d of %d",
|
||||||
ControlFilePath, r, (int) sizeof(ControlFileData))));
|
ControlFilePath, r, (int) sizeof(ControlFileData))));
|
||||||
#else
|
#else
|
||||||
{
|
{
|
||||||
fprintf(stderr, _("%s: could not read file \"%s\": read %d bytes, expected %d\n"),
|
fprintf(stderr, _("%s: could not read file \"%s\": read %d of %d\n"),
|
||||||
progname, ControlFilePath, r, (int) sizeof(ControlFileData));
|
progname, ControlFilePath, r, (int) sizeof(ControlFileData));
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user