diff options
author | Fujii Masao <fujii@postgresql.org> | 2016-04-06 22:20:52 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2016-04-06 22:20:52 +0900 |
commit | ead9963c471ccde50ff220e8294ea11a57eee91c (patch) | |
tree | ef434371fb219c91b085d77ccafaad0f997dbdb1 /src | |
parent | cac0e36682970ec1276d3da3d3ee37325544a2bb (diff) | |
download | postgresql-ead9963c471ccde50ff220e8294ea11a57eee91c.tar.gz postgresql-ead9963c471ccde50ff220e8294ea11a57eee91c.zip |
Use proper format specifier %X/%X for LSN, again.
Commit cee31f5 fixed this problem, but commit 989be08 accidentally
reverted the fix.
Thomas Munro
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/replication/syncrep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/replication/syncrep.c b/src/backend/replication/syncrep.c index d454e7f3683..cb6b5e53178 100644 --- a/src/backend/replication/syncrep.c +++ b/src/backend/replication/syncrep.c @@ -474,7 +474,7 @@ SyncRepReleaseWaiters(void) LWLockRelease(SyncRepLock); - elog(DEBUG3, "released %d procs up to write %X/%X, %d procs up to flush %X/%X, %d procs up to apply %X/%x", + elog(DEBUG3, "released %d procs up to write %X/%X, %d procs up to flush %X/%X, %d procs up to apply %X/%X", numwrite, (uint32) (writePtr >> 32), (uint32) writePtr, numflush, (uint32) (flushPtr >> 32), (uint32) flushPtr, numapply, (uint32) (applyPtr >> 32), (uint32) applyPtr); |