commit 92c5d29e20f4df8ae4f7d8266e89426601591010 parent 5b76ae26d81d215084f42aa0de20231decce273e Author: rsc <devnull@localhost> Date: Wed, 21 Sep 2005 20:51:01 +0000 Extra paren removed. (Bengt Kleberg, glaive) Diffstat:
M | src/cmd/9term/SunOS.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/cmd/9term/SunOS.c b/src/cmd/9term/SunOS.c @@ -99,7 +99,7 @@ setecho(int fd, int newe) int getintr(int fd) { - if((tcgetattr(fd, &ttmode) < 0) + if(tcgetattr(fd, &ttmode) < 0) return 0x7F; return ttmode.c_cc[VINTR]; }