test307.pl: silence warning

```
Scalar value @ARGV[0] better written as $ARGV[0] at ./test307.pl line 33.
```
This commit is contained in:
Viktor Szakats 2025-07-09 23:33:11 +02:00
parent 1c89117398
commit fea9610e47
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

@ -30,7 +30,7 @@ if($#ARGV != 0) {
print "Usage: $0 curl-executable\n";
exit 3;
}
if(!open(CURL, "@ARGV[0] -s --engine list|")) {
if(!open(CURL, "$ARGV[0] -s --engine list|")) {
print "Can't get SSL engine list\n";
exit 2;
}