diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-07-02 03:09:04 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-07-02 03:09:04 +0000 |
commit | ad78e5492e8cc81959085c550786672cd0db9f47 (patch) | |
tree | 4b3cb574f363008ae752d8fa8e09b37fd9bd34aa /ext | |
parent | 28e1f846b855b70837afc0a54acecb5b653e99fc (diff) | |
download | perl-ad78e5492e8cc81959085c550786672cd0db9f47.tar.gz |
avoid warnings
p4raw-id: //depot/perl@3564
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Thread/Thread/Specific.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Thread/Thread/Specific.pm b/ext/Thread/Thread/Specific.pm index 9c8a66a9e6..46b9b60981 100644 --- a/ext/Thread/Thread/Specific.pm +++ b/ext/Thread/Thread/Specific.pm @@ -18,7 +18,7 @@ C<key_create> returns a unique thread-specific key. sub import { use attrs qw(locked method); require fields; - fields->import(@_); + fields::->import(@_); } sub key_create { |