diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-08-30 02:54:42 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-08-30 02:54:42 +0000 |
commit | 15d3f9f6b7849a70281f151f0def7a6d335767d7 (patch) | |
tree | 98d285e17c671a56e484e98916703280e1947a78 /src/interfaces/libpq/fe-exec.c | |
parent | 166300f318f5b4795c0f7679144a1c23c0118163 (diff) | |
download | postgresql-15d3f9f6b7849a70281f151f0def7a6d335767d7.tar.gz postgresql-15d3f9f6b7849a70281f151f0def7a6d335767d7.zip |
Another pgindent run with lib typedefs added.
Diffstat (limited to 'src/interfaces/libpq/fe-exec.c')
-rw-r--r-- | src/interfaces/libpq/fe-exec.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interfaces/libpq/fe-exec.c b/src/interfaces/libpq/fe-exec.c index 7b8b607e575..5ac115fe792 100644 --- a/src/interfaces/libpq/fe-exec.c +++ b/src/interfaces/libpq/fe-exec.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/interfaces/libpq/fe-exec.c,v 1.161 2004/08/29 05:07:00 momjian Exp $ + * $PostgreSQL: pgsql/src/interfaces/libpq/fe-exec.c,v 1.162 2004/08/30 02:54:41 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -458,7 +458,7 @@ pqPrepareAsyncResult(PGconn *conn) * a trailing newline, and should not be more than one line). */ void -pqInternalNotice(const PGNoticeHooks * hooks, const char *fmt,...) +pqInternalNotice(const PGNoticeHooks *hooks, const char *fmt,...) { char msgBuf[1024]; va_list args; @@ -503,7 +503,7 @@ pqInternalNotice(const PGNoticeHooks * hooks, const char *fmt,...) * Returns TRUE if OK, FALSE if not enough memory to add the row */ int -pqAddTuple(PGresult *res, PGresAttValue * tup) +pqAddTuple(PGresult *res, PGresAttValue *tup) { if (res->ntups >= res->tupArrSize) { @@ -592,7 +592,7 @@ pqSaveParameterStatus(PGconn *conn, const char *name, const char *value) * Store new info as a single malloc block */ pstatus = (pgParameterStatus *) malloc(sizeof(pgParameterStatus) + - strlen(name) + strlen(value) + 2); + strlen(name) +strlen(value) + 2); if (pstatus) { char *ptr; |