зеркало из https://github.com/microsoft/docker.git
use fmt.Fprintf instead of fmt.Fprint
fmt.Fprint does not allow format strings
This commit is contained in:
Родитель
15c3096e89
Коммит
3b8c2417fb
|
@ -99,7 +99,7 @@ func (srv *Server) CmdLogin(stdin io.ReadCloser, stdout io.Writer, args ...strin
|
|||
}
|
||||
if err != nil {
|
||||
if err != io.EOF {
|
||||
fmt.Fprint(stdout, "Read error: %v\n", err)
|
||||
fmt.Fprintf(stdout, "Read error: %v\n", err)
|
||||
}
|
||||
break
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче