artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8147e0b
)
add missing return value
author
millert
<millert@openbsd.org>
Thu, 2 Mar 2000 21:55:41 +0000
(21:55 +0000)
committer
millert
<millert@openbsd.org>
Thu, 2 Mar 2000 21:55:41 +0000
(21:55 +0000)
usr.bin/mg/ttyio.c
patch
|
blob
|
history
diff --git
a/usr.bin/mg/ttyio.c
b/usr.bin/mg/ttyio.c
index
31bc386
..
40136b4
100644
(file)
--- a/
usr.bin/mg/ttyio.c
+++ b/
usr.bin/mg/ttyio.c
@@
-42,7
+42,7
@@
void panic __P((char *));
int ttwait __P((void));
/*
- * This function gets called once, to set up the terminal
+ * This function gets called once, to set up the terminal
.
* On systems w/o TCSASOFT we turn off off flow control,
* which isn't really the right thing to do.
*/
@@
-91,6
+91,7
@@
ttraw()
ewprintf("ttopen can't tcsetattr");
return(FALSE);
}
+ return(TRUE);
}
/*