From: Tom Lane Date: Mon, 7 Mar 2011 01:04:29 +0000 (-0500) Subject: Add missing "static" marker to internal_ping(). X-Git-Tag: REL9_1_ALPHA4~32 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=775464e8450677602833b1d11b919838e7b2b29a;p=postgresql Add missing "static" marker to internal_ping(). Per testing with a compiler that doesn't like that. --- diff --git a/src/interfaces/libpq/fe-connect.c b/src/interfaces/libpq/fe-connect.c index 7766c7eaba..a4959ee22e 100644 --- a/src/interfaces/libpq/fe-connect.c +++ b/src/interfaces/libpq/fe-connect.c @@ -2593,7 +2593,7 @@ error_return: * * The argument is a connection that's been started, but not completed. */ -PGPing +static PGPing internal_ping(PGconn *conn) { /* Say "no attempt" if we never got to PQconnectPoll */