Skip to content

Commit

Permalink
Fix output error not using the proper value but its address
Browse files Browse the repository at this point in the history
  • Loading branch information
obourdon committed Oct 17, 2023
1 parent 2b11a40 commit 4a05180
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion command/lb-get.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func (c *LBGetCommand) Run(args []string) int {
return msg, nil
}
}
return "", errors.New(fmt.Sprintf("Load balancer with ID %d not found in project %s", lbID, projectToShow))
return "", errors.New(fmt.Sprintf("Load balancer with ID %d not found in project %s", *lbID, projectToShow))
})
}

Expand Down

0 comments on commit 4a05180

Please sign in to comment.