diff options
author | Peter Palfrader <peter@palfrader.org> | 2003-02-03 20:10:35 +0000 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2003-02-03 20:10:35 +0000 |
commit | 715657d80b4edb0d5f34350d957450b199d29bbf (patch) | |
tree | 1a0d99fab22c6688433ffb9ca389bc651cdde785 /Echolot/Storage | |
parent | 8bd1ed90c790e594e7d59e2ac5fed4faa7f2effe (diff) |
Add missing use of Carp
Diffstat (limited to 'Echolot/Storage')
-rw-r--r-- | Echolot/Storage/File.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Echolot/Storage/File.pm b/Echolot/Storage/File.pm index c25c46f..81e6524 100644 --- a/Echolot/Storage/File.pm +++ b/Echolot/Storage/File.pm @@ -1,7 +1,7 @@ package Echolot::Storage::File; # (c) 2002 Peter Palfrader <peter@palfrader.org> -# $Id: File.pm,v 1.44 2003/01/14 05:25:35 weasel Exp $ +# $Id: File.pm,v 1.45 2003/02/03 20:10:35 weasel Exp $ # =pod @@ -22,6 +22,7 @@ use strict; use Data::Dumper; use IO::Handle; use English; +use Carp; use Fcntl ':flock'; # import LOCK_* constants #use Fcntl ':seek'; # import SEEK_* constants use POSIX; # import SEEK_* constants (older perls don't have SEEK_ in Fcntl) |