Fix a go vet failure

This commit is contained in:
joeduffy 2017-03-06 13:02:48 +00:00
parent 7cb9ce2663
commit 9044047b84

View file

@ -15,7 +15,7 @@ func MaybeCheckError(failures []*cocorpc.CheckFailure) error {
return nil
}
str := fmt.Sprintf("%d of this security group rule's properties failed validation:")
str := fmt.Sprintf("%d of this security group rule's properties failed validation:", len(failures))
for _, failure := range failures {
str += fmt.Sprintf("\n\t%v: %v", failure.Property, failure.Reason)
}