Static-check fixes from @lespea #1657, batch 4/n (#1706)

* Static-check fixes from @lespea #1657, batch 2/n

* Static-check fixes from @lespea #1657, batch 3/n

* Static-check fixes from @lespea #1657, batch 4/n
This commit is contained in:
John Kerl 2024-10-27 12:00:25 -04:00 committed by GitHub
parent 04a9b9decd
commit 8c791f5466
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 20 additions and 20 deletions

View file

@ -79,7 +79,7 @@ func GetArgs() []string {
//printArgs(retargs, "NEW")
globbed := make([]string, 0)
for i, _ := range retargs {
for i := range retargs {
// Expand things like *.csv
matches, err := filepath.Glob(retargs[i])
if matches != nil && err == nil {