summaryrefslogtreecommitdiff
path: root/mwc.pl
diff options
context:
space:
mode:
Diffstat (limited to 'mwc.pl')
-rwxr-xr-xmwc.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/mwc.pl b/mwc.pl
index 1fcfd350..34ed0c1f 100755
--- a/mwc.pl
+++ b/mwc.pl
@@ -19,7 +19,7 @@ use FindBin;
use File::Spec;
use File::Basename;
-my($basePath) = $FindBin::Bin;
+my $basePath = $FindBin::Bin;
if ($^O eq 'VMS') {
$basePath = File::Spec->rel2abs(dirname($0)) if ($basePath eq '');
$basePath = VMS::Filespec::unixify($basePath);
@@ -40,5 +40,5 @@ sub getBasePath {
# Main Section
# ************************************************************
-my($driver) = new Driver($basePath, basename($0));
+my $driver = new Driver($basePath, basename($0));
exit($driver->run(@ARGV));