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
1 changed files with 1 additions and 1 deletions

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)
}
}()