summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobert Haas2012-06-25 18:00:35 +0000
committerRobert Haas2012-06-25 18:00:35 +0000
commitc7d47abd04dc1322fd545370cfeb743680df0e3a (patch)
tree47e08578db2b24a4b7b8c67e64bfaa2b4394c9a2 /src
parenta6427f1f478b0bf43d1b861ee4053e2e8bc6118b (diff)
Fix typo in DEBUG message, introduced by recent WAL refactoring.
Fujii Masao
Diffstat (limited to 'src')
-rw-r--r--src/backend/replication/walsender.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/replication/walsender.c b/src/backend/replication/walsender.c
index 0541c249988..d5cb778f7e6 100644
--- a/src/backend/replication/walsender.c
+++ b/src/backend/replication/walsender.c
@@ -612,9 +612,9 @@ ProcessStandbyReplyMessage(void)
pq_copymsgbytes(&reply_message, (char *) &reply, sizeof(StandbyReplyMessage));
elog(DEBUG2, "write %X/%X flush %X/%X apply %X/%X",
- (uint32) (reply.write << 32), (uint32) reply.write,
- (uint32) (reply.flush << 32), (uint32) reply.flush,
- (uint32) (reply.apply << 32), (uint32) reply.apply);
+ (uint32) (reply.write >> 32), (uint32) reply.write,
+ (uint32) (reply.flush >> 32), (uint32) reply.flush,
+ (uint32) (reply.apply >> 32), (uint32) reply.apply);
/*
* Update shared state for this WalSender process based on reply data from