summaryrefslogtreecommitdiff
path: root/ext/GDBM_File/GDBM_File.pm
diff options
context:
space:
mode:
Diffstat (limited to 'ext/GDBM_File/GDBM_File.pm')
-rw-r--r--ext/GDBM_File/GDBM_File.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/GDBM_File/GDBM_File.pm b/ext/GDBM_File/GDBM_File.pm
index 0b4182c34d..5520b3f566 100644
--- a/ext/GDBM_File/GDBM_File.pm
+++ b/ext/GDBM_File/GDBM_File.pm
@@ -48,7 +48,7 @@ our($VERSION, @ISA, @EXPORT, $AUTOLOAD);
require Carp;
require Tie::Hash;
require Exporter;
-use XSLoader ();
+require XSLoader;
@ISA = qw(Tie::Hash Exporter);
@EXPORT = qw(
GDBM_CACHESIZE
@@ -81,6 +81,6 @@ sub AUTOLOAD {
goto &{$AUTOLOAD};
}
-XSLoader::load 'GDBM_File', $VERSION;
+XSLoader::load();
1;