Fix silly little syntax mistake

Signed-off-by: Andrew "Tianon" Page <admwiggin@gmail.com>
This commit is contained in:
Tianon Gravi 2015-01-09 15:03:11 -07:00
parent fac1213ecb
commit 6292354dc3
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)
}
}()