diff options
author | Bruce Momjian <bruce@momjian.us> | 2012-06-10 15:20:04 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2012-06-10 15:20:04 -0400 |
commit | 927d61eeff78363ea3938c818d07e511ebaf75cf (patch) | |
tree | 2f0bcecf53327f76272a8ce690fa62505520fab9 /src/interfaces/libpq/fe-exec.c | |
parent | 60801944fa105252b48ea5688d47dfc05c695042 (diff) |
Run pgindent on 9.2 source tree in preparation for first 9.3
commit-fest.
Diffstat (limited to 'src/interfaces/libpq/fe-exec.c')
-rw-r--r-- | src/interfaces/libpq/fe-exec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/libpq/fe-exec.c b/src/interfaces/libpq/fe-exec.c index c643b8e69ca..badc0b32a8e 100644 --- a/src/interfaces/libpq/fe-exec.c +++ b/src/interfaces/libpq/fe-exec.c @@ -1052,7 +1052,7 @@ pqStdRowProcessor(PGresult *res, const PGdataValue *columns, * copy the data over. * * Note: on malloc failure, we return -1 leaving *errmsgp still NULL, - * which caller will take to mean "out of memory". This is preferable to + * which caller will take to mean "out of memory". This is preferable to * trying to set up such a message here, because evidently there's not * enough memory for gettext() to do anything. */ @@ -1063,7 +1063,7 @@ pqStdRowProcessor(PGresult *res, const PGdataValue *columns, for (i = 0; i < nfields; i++) { - int clen = columns[i].len; + int clen = columns[i].len; if (clen < 0) { @@ -1743,7 +1743,7 @@ PQgetResult(PGconn *conn) * * This is mainly useful for cleaning up after a longjmp out of a row * processor, when resuming processing of the current query result isn't - * wanted. Note that this is of little value in an async-style application, + * wanted. Note that this is of little value in an async-style application, * since any preceding calls to PQisBusy would have already called the regular * row processor. */ |