Author: turnstep
Date: Thu Oct 30 21:13:55 2008
New Revision: 12015

Modified:
   DBD-Pg/trunk/Pg.xs
   DBD-Pg/trunk/dbdimp.c
   DBD-Pg/trunk/dbdimp.h

Log:
Remove unneeded arg


Modified: DBD-Pg/trunk/Pg.xs
==============================================================================
--- DBD-Pg/trunk/Pg.xs  (original)
+++ DBD-Pg/trunk/Pg.xs  Thu Oct 30 21:13:55 2008
@@ -332,7 +332,7 @@
        CODE:
                int ret;
                D_imp_dbh(dbh);
-               ret = pg_db_getfd(dbh, imp_dbh);
+               ret = pg_db_getfd(imp_dbh);
                ST(0) = sv_2mortal( newSViv( ret ) );
 
 

Modified: DBD-Pg/trunk/dbdimp.c
==============================================================================
--- DBD-Pg/trunk/dbdimp.c       (original)
+++ DBD-Pg/trunk/dbdimp.c       Thu Oct 30 21:13:55 2008
@@ -1299,7 +1299,7 @@
 
 /* Deprecated in favor of $dbh->{pg_socket} */
 /* ================================================================== */
-int pg_db_getfd (SV * dbh, imp_dbh_t * imp_dbh)
+int pg_db_getfd (imp_dbh_t * imp_dbh)
 {
        dTHX;
 

Modified: DBD-Pg/trunk/dbdimp.h
==============================================================================
--- DBD-Pg/trunk/dbdimp.h       (original)
+++ DBD-Pg/trunk/dbdimp.h       Thu Oct 30 21:13:55 2008
@@ -183,7 +183,7 @@
 
 /* Custom PG functions, in order they appear in dbdimp.c */
 
-int pg_db_getfd (SV *dbh, imp_dbh_t * imp_dbh);
+int pg_db_getfd (imp_dbh_t * imp_dbh);
 
 SV * pg_db_pg_notifies (SV *dbh, imp_dbh_t *imp_dbh);
 

Reply via email to