mirror of
https://github.com/EnterpriseDB/repmgr.git
synced 2026-03-26 16:46:28 +00:00
avoid compiler warnings
This commit is contained in:
@@ -428,7 +428,7 @@ getMasterConnection(PGconn *standby_conn, char *schema, char *cluster,
|
|||||||
* return 1 if Ok; 0 if any error ocurred; -1 if timeout reached
|
* return 1 if Ok; 0 if any error ocurred; -1 if timeout reached
|
||||||
*/
|
*/
|
||||||
int
|
int
|
||||||
wait_connection_availability(PGconn *conn, unsigned long timeout)
|
wait_connection_availability(PGconn *conn, long long timeout)
|
||||||
{
|
{
|
||||||
PGresult *res;
|
PGresult *res;
|
||||||
fd_set read_set;
|
fd_set read_set;
|
||||||
|
|||||||
@@ -39,6 +39,6 @@ const char *get_cluster_size(PGconn *conn);
|
|||||||
PGconn *getMasterConnection(PGconn *standby_conn, char *schema, char *cluster,
|
PGconn *getMasterConnection(PGconn *standby_conn, char *schema, char *cluster,
|
||||||
int *master_id, char *master_conninfo_out);
|
int *master_id, char *master_conninfo_out);
|
||||||
|
|
||||||
int wait_connection_availability(PGconn *conn, unsigned long timeout);
|
int wait_connection_availability(PGconn *conn, long long timeout);
|
||||||
bool CancelQuery(PGconn *conn, int timeout);
|
bool CancelQuery(PGconn *conn, int timeout);
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -144,7 +144,7 @@ static void terminate(int retval);
|
|||||||
static void setup_event_handlers(void);
|
static void setup_event_handlers(void);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static void do_daemonize();
|
static void do_daemonize(void);
|
||||||
static void check_and_create_pid_file(const char *pid_file);
|
static void check_and_create_pid_file(const char *pid_file);
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|||||||
Reference in New Issue
Block a user