diff options
author | Abhijit Menon-Sen <ams@wiw.org> | 2002-05-21 04:08:39 +0000 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2002-05-21 04:08:39 +0000 |
commit | 01d7b99e1fe233681f34728cff45b245cdda047c (patch) | |
tree | 130a7b5b1b5d109edb8dc59b1030f0c72184fa43 /ext | |
parent | 4f93eb5db82bc81fc5a4411216f43045e6872302 (diff) | |
download | perl-01d7b99e1fe233681f34728cff45b245cdda047c.tar.gz |
Suppress warning about $canonical. (Nicholas Clark)
p4raw-id: //depot/perl@16718
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Storable/Storable.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Storable/Storable.pm b/ext/Storable/Storable.pm index 50fc105ad9..112c87162b 100644 --- a/ext/Storable/Storable.pm +++ b/ext/Storable/Storable.pm @@ -68,7 +68,7 @@ package Storable; @ISA = qw(Exporter DynaLoader); ); use AutoLoader; -use vars qw($forgive_me $VERSION); +use vars qw($canonical $forgive_me $VERSION); $VERSION = '2.00'; *AUTOLOAD = \&AutoLoader::AUTOLOAD; # Grrr... |