Author: REHSACK
Date: Sat May 22 07:01:43 2010
New Revision: 14005
Modified:
dbi/trunk/lib/DBD/DBM.pm
Log:
Fix prototype of DBD::DBM::Table::fetch_row
Modified: dbi/trunk/lib/DBD/DBM.pm
==============================================================================
--- dbi/trunk/lib/DBD/DBM.pm (original)
+++ dbi/trunk/lib/DBD/DBM.pm Sat May 22 07:01:43 2010
@@ -457,9 +457,9 @@
# as Janis might say: "undef's just another word for
# nothing left to fetch" :-)
#
-sub fetch_row ($$$)
+sub fetch_row ($$)
{
- my ( $self, $data, $row ) = @_;
+ my ( $self, $data ) = @_;
my $meta = $self->{meta};
# fetch with %each
#