Commit 3f23f4ee authored by Bruce Momjian's avatar Bruce Momjian

Add some blank lines for formatting.

parent c6848986
...@@ -8,7 +8,7 @@ ...@@ -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, ...@@ -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, ...@@ -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])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment