diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2021-08-06 20:55:59 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2021-08-06 20:55:59 +0200 |
commit | 05e60aece33e84960ef566e4735b2d93c2d791c8 (patch) | |
tree | ae9372d0f8578e591daf4680123f4e513753dba4 /src/bin/pg_resetwal/pg_resetwal.c | |
parent | b406478b87e2234c0be4ca4105eee3bb466a646b (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 b79f70a60d4..36749648573 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; |