From 98280bb2030a172032741214909a3864dd02a49b Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Sat, 3 Jan 2015 15:25:09 +0100 Subject: Multiple variables for 'my' need to be in parenthesis perl -wc reported: Parentheses missing around "my" list at sims.pl line 9. Useless use of a variable in void context at sims.pl line 9. Useless use of a variable in void context at sims.pl line 9. Useless use of a variable in void context at sims.pl line 9. Useless use of a variable in void context at sims.pl line 9. Name "main::doonly" used only once: possible typo at sims.pl line 9. -> now it's happy. Change-Id: I3b3685d6918ddb77e47c58bade931897075c6e04 --- tools/release/sims.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/release/sims.pl b/tools/release/sims.pl index 9b8bca42fb..1a6edb3ea1 100755 --- a/tools/release/sims.pl +++ b/tools/release/sims.pl @@ -6,7 +6,7 @@ use Cwd; require "tools/builds.pm"; -my $verbose, $strip, $update, $doonly, $version; +my ($verbose, $strip, $update, $doonly, $version); my @doonly; my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time()); -- cgit v1.2.3