aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-09-28 12:59:29 +0000
committerBruce Momjian <bruce@momjian.us>1999-09-28 12:59:29 +0000
commitf282b4ff4c8b50fc48ef03aa17a4edc488b412fc (patch)
treef730ea68642575b4092488df3c83000ce30ccd78
parent3fea625e9ddfbf19eb4fc32c9704b6e4300fed6b (diff)
downloadpostgresql-f282b4ff4c8b50fc48ef03aa17a4edc488b412fc.tar.gz
postgresql-f282b4ff4c8b50fc48ef03aa17a4edc488b412fc.zip
libpq++ cleanup from Vince Vielhaber
-rw-r--r--src/interfaces/libpq++/pgdatabase.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq++/pgdatabase.cc b/src/interfaces/libpq++/pgdatabase.cc
index 9f616c507e1..d278465f6b5 100644
--- a/src/interfaces/libpq++/pgdatabase.cc
+++ b/src/interfaces/libpq++/pgdatabase.cc
@@ -10,7 +10,7 @@
* Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/pgdatabase.cc,v 1.5 1999/09/28 04:49:22 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/pgdatabase.cc,v 1.6 1999/09/28 12:59:29 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -63,7 +63,7 @@ return PQntuples(pgResult);
int PgDatabase::CmdTuples()
{
-return PQcmdTuples (PGresult);
+return PQcmdTuples (pgResult);
}