aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2005-09-21 20:51:01 +0000
committerrsc <devnull@localhost>2005-09-21 20:51:01 +0000
commit92c5d29e20f4df8ae4f7d8266e89426601591010 (patch)
treea461dd9881933de3f17117521c588f5a5717aa55 /src
parent5b76ae26d81d215084f42aa0de20231decce273e (diff)
downloadplan9port-92c5d29e20f4df8ae4f7d8266e89426601591010.tar.gz
plan9port-92c5d29e20f4df8ae4f7d8266e89426601591010.tar.bz2
plan9port-92c5d29e20f4df8ae4f7d8266e89426601591010.zip
Extra paren removed. (Bengt Kleberg, glaive)
Diffstat (limited to 'src')
-rw-r--r--src/cmd/9term/SunOS.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/9term/SunOS.c b/src/cmd/9term/SunOS.c
index 77ef2823..ac1432de 100644
--- 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];
}