1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #10010 from tianon/fix-lol

Fix silly little syntax mistake
This commit is contained in:
Michael Crosby 2015-01-09 14:53:00 -08:00
commit 8ba4484084

View file

@ -260,7 +260,7 @@ func (cli *DockerCli) monitorTtySize(id string, isExec bool) error {
sigchan := make(chan os.Signal, 1)
gosignal.Notify(sigchan, signal.SIGWINCH)
go func() {
for _ := range sigchan {
for _ = range sigchan {
cli.resizeTty(id, isExec)
}
}()