diff options
author | Fujii Masao <fujii@postgresql.org> | 2016-03-31 11:03:40 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2016-03-31 11:03:40 +0900 |
commit | cee31f5fee950fed4159a4e093dab60b70ef215a (patch) | |
tree | 1e6c62fccabeaff135b8a3d823d15e29cf7cede2 | |
parent | 3a3b309041b0f30066f0b6cb6640563b6ea27cde (diff) | |
download | postgresql-cee31f5fee950fed4159a4e093dab60b70ef215a.tar.gz postgresql-cee31f5fee950fed4159a4e093dab60b70ef215a.zip |
Use proper format specifier %X/%X for LSN.
-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 2da9cba5dc7..12c0c3bee3e 100644 --- a/src/backend/replication/syncrep.c +++ b/src/backend/replication/syncrep.c @@ -482,7 +482,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) (MyWalSnd->write >> 32), (uint32) MyWalSnd->write, numflush, (uint32) (MyWalSnd->flush >> 32), (uint32) MyWalSnd->flush, numapply, (uint32) (MyWalSnd->apply >> 32), (uint32) MyWalSnd->apply); |