diff options
| author | Thomas Jarosch <tomj@simonv.com> | 2015-01-03 15:25:09 +0100 |
|---|---|---|
| committer | Thomas Jarosch <tomj@simonv.com> | 2015-01-03 15:25:09 +0100 |
| commit | 98280bb2030a172032741214909a3864dd02a49b (patch) | |
| tree | abbe37c527012dafc5205c74e2d3697d49bda589 /tools | |
| parent | dd75bb756d501f3bcb78be70b88a70b4a2dee307 (diff) | |
| download | rockbox-98280bb2030a172032741214909a3864dd02a49b.zip rockbox-98280bb2030a172032741214909a3864dd02a49b.tar.gz rockbox-98280bb2030a172032741214909a3864dd02a49b.tar.bz2 rockbox-98280bb2030a172032741214909a3864dd02a49b.tar.xz | |
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
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/release/sims.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/release/sims.pl b/tools/release/sims.pl index 9b8bca4..1a6edb3 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()); |