mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-16 18:25:11 -06:00
gnc-fq-dump: fix warning on argv
Scalar value @ARGV[0] better written as $ARGV[0] at gnc-fq-dump line 160.
This commit is contained in:
parent
56fa959ec0
commit
82987e13f3
@ -157,7 +157,7 @@ if ($#ARGV < 1) {
|
||||
}
|
||||
|
||||
my $verbose = 0;
|
||||
if (@ARGV[0] eq "-v") {
|
||||
if ($ARGV[0] eq "-v") {
|
||||
$verbose = 1;
|
||||
shift;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user