summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Process/ThreadTrack.pm
diff options
context:
space:
mode:
authortmu <tmu>2002-02-27 09:20:33 +0000
committertmu <tmu>2002-02-27 09:20:33 +0000
commit8aec3cbb5bef8b9f145c09dd81b0b862c64b46ea (patch)
tree7afc0da369e74f1078d5cb7e936f3dcb03ea619b /fml/lib/FML/Process/ThreadTrack.pm
parenta7f2469eebd57e71281ebf28f78998ce6a9de9e8 (diff)
downloadfml8-reply-message-base.tar.gz
fml8-reply-message-base.tar.bz2
fml8-reply-message-base.zip
work and bugfix _search_max_id_from_top()reply-message-base
Diffstat (limited to 'fml/lib/FML/Process/ThreadTrack.pm')
-rw-r--r--fml/lib/FML/Process/ThreadTrack.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/fml/lib/FML/Process/ThreadTrack.pm b/fml/lib/FML/Process/ThreadTrack.pm
index 1f1107d2..13df4919 100644
--- a/fml/lib/FML/Process/ThreadTrack.pm
+++ b/fml/lib/FML/Process/ThreadTrack.pm
@@ -3,7 +3,7 @@
# Copyright (C) 2001,2002 Ken'ichi Fukamachi
# All rights reserved.
#
-# $FML: ThreadTrack.pm,v 1.22 2002/02/17 03:07:56 fukachan Exp $
+# $FML: ThreadTrack.pm,v 1.23 2002/02/17 13:45:10 fukachan Exp $
#
package FML::Process::ThreadTrack;
@@ -242,7 +242,7 @@ sub _speculate_last_id
if (defined $rh) {
eval q{
use File::Sequence;
- my $obj = new File::Sequence;
+ my $obj = new File::Sequence { sequence_file => $seq_file };
$last_id = $obj->search_max_id( { hash => $rh } );
};
warn($@) if $@;