Skip to content

Commit

Permalink
Fix missing formatting directive causing go vet to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
Preetha Appan committed Jun 27, 2017
1 parent 63564da commit 07db760
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agent/agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -1239,7 +1239,7 @@ func (a *Agent) JoinLAN(addrs []string) (n int, err error) {
a.logger.Printf("[INFO] agent: (LAN) joined: %d Err: %v", n, err)
if err == nil && a.joinLANNotifier != nil {
if notifErr := a.joinLANNotifier.Notify(systemd.Ready); notifErr != nil {
a.logger.Printf("[DEBUG] agent: systemd notify failed: ", notifErr)
a.logger.Printf("[DEBUG] agent: systemd notify failed: %v", notifErr)
}
}
return
Expand Down

0 comments on commit 07db760

Please sign in to comment.