From 775464e8450677602833b1d11b919838e7b2b29a Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sun, 6 Mar 2011 20:04:29 -0500 Subject: [PATCH] Add missing "static" marker to internal_ping(). Per testing with a compiler that doesn't like that. --- src/interfaces/libpq/fe-connect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.11.0