summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2000-03-02 21:55:42 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2000-03-02 21:55:42 +0000
commit8dddca79e5954fa926e12cfa2258609d5af20895 (patch)
tree50a7fea5974ebbe4d4401f73b9f2d6647aaeeb02
parent864ccb16c3c0833a19497a00a5b961439d0852ad (diff)
add missing return value
-rw-r--r--usr.bin/mg/ttyio.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mg/ttyio.c b/usr.bin/mg/ttyio.c
index 31bc386959b..40136b48ab8 100644
--- 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);
}
/*