Skip to content

Commit 8bd4711

Browse files
committed
Fix golint problems
1 parent fdfa559 commit 8bd4711

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ func main() {
6464
log.SetFlags(0)
6565

6666
var Usage = func() {
67-
fmt.Fprintf(os.Stderr, "Usage %s:", os.Args[0])
68-
fmt.Fprintf(os.Stderr, USAGE)
67+
_, _ = fmt.Fprintf(os.Stderr, "Usage %s:", os.Args[0])
68+
_, _ = fmt.Fprintf(os.Stderr, USAGE)
6969
flag.PrintDefaults()
7070
}
7171

0 commit comments

Comments
 (0)