Extra paren removed. (Bengt Kleberg, glaive)

This commit is contained in:
rsc 2005-09-21 20:51:01 +00:00
parent 5b76ae26d8
commit 92c5d29e20

View file

@ -99,7 +99,7 @@ setecho(int fd, int newe)
int int
getintr(int fd) getintr(int fd)
{ {
if((tcgetattr(fd, &ttmode) < 0) if(tcgetattr(fd, &ttmode) < 0)
return 0x7F; return 0x7F;
return ttmode.c_cc[VINTR]; return ttmode.c_cc[VINTR];
} }