Skip to content
This repository was archived by the owner on Mar 27, 2024. It is now read-only.

Commit a900778

Browse files
davidcassanydlorenc
authored andcommitted
Fix unintended variable shadowing (#263)
1 parent d3822e7 commit a900778

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

differs/rpm_diff.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ func rpmDataFromFS(fsPath string, dbPath string) (map[string]util.PackageInfo, e
438438
return packages, err
439439
}
440440
output := strings.Split(string(out), "\n")
441-
packages, err := parsePackageData(output)
441+
packages, err = parsePackageData(output)
442442
if err != nil {
443443
return packages, err
444444
}

0 commit comments

Comments
 (0)