From: Robert Haas Date: Mon, 25 Jun 2012 18:00:35 +0000 (-0400) Subject: Fix typo in DEBUG message, introduced by recent WAL refactoring. X-Git-Tag: REL9_3_BETA1~1300 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=c7d47abd04dc1322fd545370cfeb743680df0e3a;p=postgresql.git Fix typo in DEBUG message, introduced by recent WAL refactoring. Fujii Masao --- 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