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

Fixed typo in Darwin termios settings

This commit is contained in:
Solomon Hykes 2013-01-28 18:37:54 -08:00
parent 7a50153c32
commit c283ff6675

View file

@ -3,6 +3,6 @@ package main
import "syscall"
const (
getTermios = syscall.TCIOGETA
setTermios = syscall.TCIOSETA
getTermios = syscall.TIOCGETA
setTermios = syscall.TIOCSETA
)