Skip to content

Commit

Permalink
lxc/network_load_balancer: replace fmt.Sprintf() by fmt.Sprint()
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Deziel <[email protected]>
  • Loading branch information
simondeziel committed Jan 29, 2025
1 parent 6578414 commit cdeb6f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lxc/network_load_balancer.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ func (c *cmdNetworkLoadBalancerList) run(cmd *cobra.Command, args []string) erro
details := []string{
loadBalancer.ListenAddress,
loadBalancer.Description,
fmt.Sprintf("%d", len(loadBalancer.Ports)),
fmt.Sprint(len(loadBalancer.Ports)),
}

if clustered {
Expand Down

0 comments on commit cdeb6f3

Please sign in to comment.