1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-21 16:02:15 +03:00

Silence compiler warning about unused variable on Windows.

This commit is contained in:
Heikki Linnakangas
2011-04-19 14:54:48 +03:00
parent a03e3e1fd1
commit b2e2d3a378

View File

@ -1530,7 +1530,9 @@ keep_going: /* We will come back to here until there is
if (!IS_AF_UNIX(addr_cur->ai_family)) if (!IS_AF_UNIX(addr_cur->ai_family))
{ {
#ifndef WIN32
int on = 1; int on = 1;
#endif
int usekeepalives = useKeepalives(conn); int usekeepalives = useKeepalives(conn);
int err = 0; int err = 0;