summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Jarosch <tomj@simonv.com>2015-01-03 15:25:09 +0100
committerThomas Jarosch <tomj@simonv.com>2015-01-03 15:25:09 +0100
commit98280bb2030a172032741214909a3864dd02a49b (patch)
treeabbe37c527012dafc5205c74e2d3697d49bda589
parentdd75bb756d501f3bcb78be70b88a70b4a2dee307 (diff)
downloadrockbox-98280bb2030a172032741214909a3864dd02a49b.tar.gz
rockbox-98280bb2030a172032741214909a3864dd02a49b.zip
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
-rwxr-xr-xtools/release/sims.pl2
1 files changed, 1 insertions, 1 deletions
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;
6 6
7require "tools/builds.pm"; 7require "tools/builds.pm";
8 8
9my $verbose, $strip, $update, $doonly, $version; 9my ($verbose, $strip, $update, $doonly, $version);
10my @doonly; 10my @doonly;
11 11
12my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time()); 12my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time());