1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Make some messages more consistent

This commit is contained in:
Peter Eisentraut
2007-05-31 15:13:06 +00:00
parent 54af876593
commit 7ce9b3683e
10 changed files with 26 additions and 26 deletions

View File

@ -270,7 +270,7 @@ CustomizableCleanupPriorWALFiles(void)
rc = unlink(WALFilePath);
if (rc !=0 )
fprintf(stderr, "\npg_standby: ERROR failed to remove \"%s\" because %s\n", WALFilePath, strerror(errno));
fprintf(stderr, "\npg_standby: ERROR failed to remove \"%s\": %s\n", WALFilePath, strerror(errno));
}
@ -320,7 +320,7 @@ CheckForExternalTrigger(void)
rc = unlink(triggerPath);
if (rc != 0)
{
fprintf(stderr, "\n ERROR: unable to remove \"%s\", because %s", triggerPath, strerror(errno));
fprintf(stderr, "\n ERROR: could not remove \"%s\": %s", triggerPath, strerror(errno));
fflush(stderr);
exit(rc);
}