mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
typo flags => flag
This commit is contained in:
parent
100d566802
commit
30968c3fe9
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ isecho(int fd)
|
|||
if(debug) fprint(2, "israw %c%c\n",
|
||||
ttmode.c_lflag&ICANON ? 'c' : '-',
|
||||
ttmode.c_lflag&ECHO ? 'e' : '-');
|
||||
return (ttmode.c_lflag&ICANON && ttmode.c_lflags&ECHO);
|
||||
return (ttmode.c_lflag&ICANON && ttmode.c_lflag&ECHO);
|
||||
}
|
||||
|
||||
int
|
||||
|
|
Loading…
Reference in a new issue