Fix govet problem

This otherwise has broken head.
This commit is contained in:
Justin Santa Barbara 2017-04-07 23:11:08 -04:00
parent e28c7beb2a
commit 96b79fae2b
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ func (c *ApplyChannelCmd) Run(args []string) error {
// Could have been a concurrent request // Could have been a concurrent request
if update != nil { if update != nil {
if update.NewVersion.Version != nil { if update.NewVersion.Version != nil {
fmt.Printf("Updated %q to %d\n", update.Name, *update.NewVersion) fmt.Printf("Updated %q to %v\n", update.Name, *update.NewVersion.Version)
} else { } else {
fmt.Printf("Updated %q\n", update.Name) fmt.Printf("Updated %q\n", update.Name)
} }