1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-05 09:19:17 +03:00

fix up a couple non-prototypes of the form foo() to be foo(void) -- found using -Wstrict-prototypes

This commit is contained in:
Greg Stark 2011-03-27 21:31:41 +01:00
parent d0dd5c7352
commit 7b66e2c086
2 changed files with 3 additions and 3 deletions

View File

@ -64,7 +64,7 @@ static PGconn *GetConnection(void);
static void ReceiveTarFile(PGconn *conn, PGresult *res, int rownum);
static void ReceiveAndUnpackTarFile(PGconn *conn, PGresult *res, int rownum);
static void BaseBackup();
static void BaseBackup(void);
#ifdef HAVE_LIBZ
static const char *
@ -752,7 +752,7 @@ GetConnection(void)
}
static void
BaseBackup()
BaseBackup(void)
{
PGresult *res;
uint32 timeline;

View File

@ -92,7 +92,7 @@ void *ECPGget_var(int number);
void ECPGfree_auto_mem(void);
#ifdef ENABLE_THREAD_SAFETY
void ecpg_pthreads_init();
void ecpg_pthreads_init(void);
#endif
#ifdef __cplusplus