summaryrefslogtreecommitdiff
path: root/src/interfaces/libpgeasy
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/libpgeasy')
-rw-r--r--src/interfaces/libpgeasy/halt.c2
-rw-r--r--src/interfaces/libpgeasy/libpgeasy.h10
2 files changed, 6 insertions, 6 deletions
diff --git a/src/interfaces/libpgeasy/halt.c b/src/interfaces/libpgeasy/halt.c
index 9d9796a6cba..2173f7adf6e 100644
--- a/src/interfaces/libpgeasy/halt.c
+++ b/src/interfaces/libpgeasy/halt.c
@@ -20,7 +20,7 @@
**------------------------------------------------------------------------*/
void
-halt(char *format, ...)
+halt(char *format,...)
{
va_list arg_ptr;
char *pstr;
diff --git a/src/interfaces/libpgeasy/libpgeasy.h b/src/interfaces/libpgeasy/libpgeasy.h
index 43fbeaba85e..e58d5a1cd60 100644
--- a/src/interfaces/libpgeasy/libpgeasy.h
+++ b/src/interfaces/libpgeasy/libpgeasy.h
@@ -4,11 +4,11 @@
*/
PGresult *doquery(char *query);
-PGconn *connectdb(char *dbName,
- char *pghost,
- char *pgport,
- char *pgoptions,
- char *pgtty);
+PGconn *connectdb(char *dbName,
+ char *pghost,
+ char *pgport,
+ char *pgoptions,
+ char *pgtty);
void disconnectdb(void);
int fetch(void *param,...);
int fetchwithnulls(void *param,...);