diff options
author | Karl Williamson <khw@cpan.org> | 2015-07-25 19:04:03 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2015-07-28 22:15:57 -0600 |
commit | d3664eb9fa8db106ff57f85c58db508e6b924a31 (patch) | |
tree | e960287265bed2b8f7ffbc26682594d5431e75c9 /lib/unicore | |
parent | ec2cd9950e2e670107a44c11c2078198f0c12848 (diff) | |
download | perl-d3664eb9fa8db106ff57f85c58db508e6b924a31.tar.gz |
mktables: Rmv extraneous sub return value
The return value of this function isn't looked at.
Diffstat (limited to 'lib/unicore')
-rw-r--r-- | lib/unicore/mktables | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/unicore/mktables b/lib/unicore/mktables index eb6ae9d2ed..d1f9baecc8 100644 --- a/lib/unicore/mktables +++ b/lib/unicore/mktables @@ -2519,7 +2519,7 @@ END my $file_handle; if (not open $file_handle, "<", $file) { Carp::my_carp("Can't open $file. Skipping: $!"); - return 0; + return; } $handle{$addr} = $file_handle; # Cache the open file handle |