Add some blank lines for formatting.

REL8_2_STABLE
Bruce Momjian 19 years ago
parent c68489863c
commit 3f23f4eec8
  1. 5
      src/interfaces/libpq/fe-exec.c

@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-exec.c,v 1.188 2006/07/04 13:22:15 momjian Exp $ * $PostgreSQL: pgsql/src/interfaces/libpq/fe-exec.c,v 1.189 2006/08/04 22:20:06 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -973,6 +973,7 @@ PQsendQueryGuts(PGconn *conn,
pqPuts("", conn) < 0 || pqPuts("", conn) < 0 ||
pqPuts(stmtName, conn) < 0) pqPuts(stmtName, conn) < 0)
goto sendFailed; goto sendFailed;
if (nParams > 0 && paramFormats) if (nParams > 0 && paramFormats)
{ {
if (pqPutInt(nParams, 2, conn) < 0) if (pqPutInt(nParams, 2, conn) < 0)
@ -988,8 +989,10 @@ PQsendQueryGuts(PGconn *conn,
if (pqPutInt(0, 2, conn) < 0) if (pqPutInt(0, 2, conn) < 0)
goto sendFailed; goto sendFailed;
} }
if (pqPutInt(nParams, 2, conn) < 0) if (pqPutInt(nParams, 2, conn) < 0)
goto sendFailed; goto sendFailed;
for (i = 0; i < nParams; i++) for (i = 0; i < nParams; i++)
{ {
if (paramValues && paramValues[i]) if (paramValues && paramValues[i])

Loading…
Cancel
Save