Commit 779f80b7 authored by Heikki Linnakangas's avatar Heikki Linnakangas

Fix typo in previous warning-silencing patch.

Fujii Masao
parent 8a759809
...@@ -433,7 +433,7 @@ ReceiveXlogStream(PGconn *conn, XLogRecPtr startpos, uint32 timeline, ...@@ -433,7 +433,7 @@ ReceiveXlogStream(PGconn *conn, XLogRecPtr startpos, uint32 timeline,
timeout.tv_sec = 1; /* Always sleep at least 1 sec */ timeout.tv_sec = 1; /* Always sleep at least 1 sec */
else else
timeout.tv_sec = secs; timeout.tv_sec = secs;
timeout.tv_sec = usecs; timeout.tv_usec = usecs;
timeoutptr = &timeout; timeoutptr = &timeout;
} }
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment