aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/transam/xlogfuncs.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2019-09-23 13:37:33 +0200
committerPeter Eisentraut <peter@eisentraut.org>2019-09-23 13:37:33 +0200
commit516a4c116c5c4206388828f7e2b4e75fa1b1fc87 (patch)
tree18bd5ed4899b823e3f641eca5f754098168c08b6 /src/backend/access/transam/xlogfuncs.c
parent84eb871647b3cc88c89d26d25f0cd84a8ac200fe (diff)
downloadpostgresql-516a4c116c5c4206388828f7e2b4e75fa1b1fc87.tar.gz
postgresql-516a4c116c5c4206388828f7e2b4e75fa1b1fc87.zip
Message style fixes
Diffstat (limited to 'src/backend/access/transam/xlogfuncs.c')
-rw-r--r--src/backend/access/transam/xlogfuncs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlogfuncs.c b/src/backend/access/transam/xlogfuncs.c
index 05704d33780..89c98e55628 100644
--- a/src/backend/access/transam/xlogfuncs.c
+++ b/src/backend/access/transam/xlogfuncs.c
@@ -726,7 +726,7 @@ pg_promote(PG_FUNCTION_ARGS)
if (wait_seconds <= 0)
ereport(ERROR,
(errcode(ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE),
- errmsg("\"wait_seconds\" cannot be negative or equal zero")));
+ errmsg("\"wait_seconds\" must not be negative or zero")));
/* create the promote signal file */
promote_file = AllocateFile(PROMOTE_SIGNAL_FILE, "w");