diff options
author | Alvaro Herrera | 2013-02-22 20:03:22 +0000 |
---|---|---|
committer | Alvaro Herrera | 2013-02-22 20:04:12 +0000 |
commit | f03a779751f6fc8dc87628d021510c4ec9e1e667 (patch) | |
tree | 2f571f7d8c067c6ecd72444c6015d6602756b199 | |
parent | 639ed4e84b7493594860f56b78b25fd113e78fd7 (diff) |
Fix copy-and-pasteo
Harmless, but it's certainly better like this.
Noticed by Andres Freund
-rw-r--r-- | contrib/pg_xlogdump/pg_xlogdump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pg_xlogdump/pg_xlogdump.c b/contrib/pg_xlogdump/pg_xlogdump.c index aef21898fb8..78b884c20ed 100644 --- a/contrib/pg_xlogdump/pg_xlogdump.c +++ b/contrib/pg_xlogdump/pg_xlogdump.c @@ -44,7 +44,7 @@ typedef struct XLogDumpConfig /* filter options */ int filter_by_rmgr; TransactionId filter_by_xid; - TransactionId filter_by_xid_enabled; + bool filter_by_xid_enabled; } XLogDumpConfig; static void |