summaryrefslogtreecommitdiff
path: root/jpl
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-07-26 03:15:33 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-07-26 03:15:33 +0000
commit265f5c4a1b0b933305c553dbf2bf285c59261bc3 (patch)
treebf6d8792c6d0bb8807b4400b4a22f1233709b7c7 /jpl
parent94672f70d8cd80d85af601db230d5a82be7c7f28 (diff)
downloadperl-265f5c4a1b0b933305c553dbf2bf285c59261bc3.tar.gz
INSTALL =~ s/5.006/5.6/; delay loading Errno until needed
(%! has the necessary magic); misc typos p4raw-id: //depot/perl@3754
Diffstat (limited to 'jpl')
-rw-r--r--jpl/JNI/JNI.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/jpl/JNI/JNI.pm b/jpl/JNI/JNI.pm
index 45a92df8d9..ad28a9a211 100644
--- a/jpl/JNI/JNI.pm
+++ b/jpl/JNI/JNI.pm
@@ -2,7 +2,6 @@ package JNI;
use strict;
use Carp;
-use Errno;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK $AUTOLOAD $JVM @JVM_ARGS $JAVALIB);
require Exporter;
@@ -199,7 +198,7 @@ sub AUTOLOAD {
($constname = $AUTOLOAD) =~ s/.*:://;
my $val = constant($constname, @_ ? $_[0] : 0);
if ($! != 0) {
- if ($!{EINVAL} || $! =~ /Invalid/) {
+ if ($! =~ /Invalid/ || $!{EINVAL}) {
$AutoLoader::AUTOLOAD = $AUTOLOAD;
goto &AutoLoader::AUTOLOAD;
}