diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2021-08-06 20:55:59 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2021-08-06 22:05:41 +0200 |
commit | d3ad6566a130988af7693267bc8605b86772618c (patch) | |
tree | d2838696f6da467711b70bb5d2ff270e7d630962 /src/bin/pg_resetwal/pg_resetwal.c | |
parent | 2f38ec6a157b60291ece1deb072bfff84f317334 (diff) |
Fix wording
Diffstat (limited to 'src/bin/pg_resetwal/pg_resetwal.c')
-rw-r--r-- | src/bin/pg_resetwal/pg_resetwal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_resetwal/pg_resetwal.c b/src/bin/pg_resetwal/pg_resetwal.c index ec35dbec0b3..c8cbd11fc2c 100644 --- a/src/bin/pg_resetwal/pg_resetwal.c +++ b/src/bin/pg_resetwal/pg_resetwal.c @@ -180,7 +180,7 @@ main(int argc, char *argv[]) } if (!TransactionIdIsNormal(set_oldest_xid)) { - pg_log_error("oldest transaction ID (-u) must be greater or equal to %u", FirstNormalTransactionId); + pg_log_error("oldest transaction ID (-u) must be greater than or equal to %u", FirstNormalTransactionId); exit(1); } break; @@ -195,7 +195,7 @@ main(int argc, char *argv[]) } if (!TransactionIdIsNormal(set_xid)) { - pg_log_error("transaction ID (-x) must be greater or equal to %u", FirstNormalTransactionId); + pg_log_error("transaction ID (-x) must be greater than or equal to %u", FirstNormalTransactionId); exit(1); } break; |