aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
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];
}