mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
vet: Fix format string warnings
Signed-off-by: Euan Harris <euan.harris@docker.com>
This commit is contained in:
parent
0275b007c6
commit
746e680871
2 changed files with 2 additions and 2 deletions
|
@ -302,7 +302,7 @@ func setINC(iface string, enable bool) error {
|
|||
if i == 1 {
|
||||
// Rollback the rule installed on first chain
|
||||
if err2 := iptables.ProgramRule(iptables.Filter, chains[0], iptables.Delete, rules[0]); err2 != nil {
|
||||
logrus.Warn("Failed to rollback iptables rule after failure (%v): %v", err, err2)
|
||||
logrus.Warnf("Failed to rollback iptables rule after failure (%v): %v", err, err2)
|
||||
}
|
||||
}
|
||||
return fmt.Errorf(msg)
|
||||
|
|
|
@ -1054,7 +1054,7 @@ func (n *network) delete(force bool, rmLBEndpoint bool) error {
|
|||
t.Name(), n.Name(), err)
|
||||
}
|
||||
} else {
|
||||
logrus.Warnf("Could not find configuration network %q during removal of network %q", n.configOnly, n.Name())
|
||||
logrus.Warnf("Could not find configuration network %q during removal of network %q", n.configFrom, n.Name())
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue