Skip to content

Commit

Permalink
pkg/utils: Rename a variable
Browse files Browse the repository at this point in the history
This will make the subsequent commit easier to read.

containers#937
  • Loading branch information
debarshiray committed Aug 31, 2022
1 parent 4306150 commit 76e4f78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pkg/utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -623,8 +623,8 @@ func ParseRelease(distro, release string) (string, error) {
panic(panicMsg)
}

parseRelease := distroObj.ParseRelease
release, err := parseRelease(release)
parseReleaseImpl := distroObj.ParseRelease
release, err := parseReleaseImpl(release)
return release, err
}

Expand Down

0 comments on commit 76e4f78

Please sign in to comment.