diff options
| author | fukachan <fukachan> | 2002-06-30 05:18:46 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2002-06-30 05:18:46 +0000 |
| commit | 5809f8eb8d67c8cdefde81216a61785187dbf392 (patch) | |
| tree | 56237c7a25fda6554d90905ded629ba98a28b899 /fml | |
| parent | 1393e1fb7a956b81d6b22aaefd73bc396bd100b8 (diff) | |
| download | fml8-5809f8eb8d67c8cdefde81216a61785187dbf392.tar.gz fml8-5809f8eb8d67c8cdefde81216a61785187dbf392.tar.bz2 fml8-5809f8eb8d67c8cdefde81216a61785187dbf392.zip | |
$self -> $curproc
Diffstat (limited to 'fml')
| -rw-r--r-- | fml/lib/FML/Process/Error.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fml/lib/FML/Process/Error.pm b/fml/lib/FML/Process/Error.pm index 5a3dcfce..22e1412d 100644 --- a/fml/lib/FML/Process/Error.pm +++ b/fml/lib/FML/Process/Error.pm @@ -3,7 +3,7 @@ # Copyright (C) 2002 Ken'ichi Fukamachi # All rights reserved. # -# $FML: Error.pm,v 1.8 2002/06/01 14:53:40 fukachan Exp $ +# $FML: Error.pm,v 1.9 2002/06/27 08:25:50 fukachan Exp $ # package FML::Process::Error; @@ -62,13 +62,13 @@ forward the request to SUPER CLASS. =cut # Descriptions: dummy -# Arguments: OBJ($self) HASH_REF($args) +# Arguments: OBJ($curproc) HASH_REF($args) # Side Effects: none # Return Value: none sub prepare { - my ($self, $args) = @_; - my $config = $self->{ config }; + my ($curproc, $args) = @_; + my $config = $curproc->{ config }; my $eval = $config->get_hook( 'error_prepare_start_hook' ); if ($eval) { eval qq{ $eval; }; LogWarn($@) if $@; } |
