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:
Frank H. Ellenberger 2020-03-13 21:22:19 +01:00
parent 56fa959ec0
commit 82987e13f3

View File

@ -157,7 +157,7 @@ if ($#ARGV < 1) {
}
my $verbose = 0;
if (@ARGV[0] eq "-v") {
if ($ARGV[0] eq "-v") {
$verbose = 1;
shift;
}