]> ruderich.org/simon Gitweb - nsscash/nsscash.git/commit
nsscash: replace %s with %v in format string for File.Type
authorSimon Ruderich <simon@ruderich.org>
Wed, 12 Jun 2019 06:48:16 +0000 (08:48 +0200)
committerSimon Ruderich <simon@ruderich.org>
Wed, 12 Jun 2019 06:48:16 +0000 (08:48 +0200)
commitd72650db8abe817b328754fb2e33137346058f15
tree3d53e0f11e6b333bee551b68b9aca868e896344f
parentbfa96c6bded3a8a4edab666f12429b0659e30ad2
nsscash: replace %s with %v in format string for File.Type

File.Type is an int value with a stringer go:generate statement. Using
%s breaks running `go test` (which runs `go vet`) before running `go
generate`. Using %v has the same result and uses the stringified version
when available.
file.go