Skip to content

Commit

Permalink
Fixed linter warning
Browse files Browse the repository at this point in the history
  • Loading branch information
skx committed May 28, 2024
1 parent 966aaf8 commit f123011
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fcb/fcb.go
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ func (f *FCB) DoesMatch(name string) bool {

// Repeat for the suffix.
for i, c := range f.Type {
if (tmp.Type[i] != c) && (f.Type[i] != '?') {
if (t[i] != c) && (t[i] != '?') {
return false
}
}
Expand Down

0 comments on commit f123011

Please sign in to comment.